Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Tài Liệu Phổ Thông
Sáng kiến kinh nghiệm
Lecture Introduction to computer and programming - Lecture No 8
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Introduction to computer and programming - Lecture No 8
Công Lập
125
1
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
The contents of this chapter include all of the following: Example programs – printf, scanf; decision control structure; relational operator in C; if statement; if-else statement; nested if else statement; logical operator in C; conditional operator. | CSC103: Introduction to Computer and Programming Lecture No 8 Previous Lecture Example programs – printf, scanf Decision control structure Relational operator in C if statement if-else statement Today’s lecture outline Nested if else statement Logical operator in C Conditional operator Nested if else It is possible to write an entire if-else with either the if statement block or else statement block Nested if else flowchart Start Display “Enter either 1 or 2” Read x Display “you entered other than 1 or 2” Go to program x == 1 Yes No x == 2 No Yes Display “you entered 1” End Display “you entered 2” Forms of if statement Cont. Logical Operators && (logical AND) true if both conditions are true if ( gender == 1 && age >= 65 ) senior++; || (logical OR) true if either of condition is true if (semesterAvg >= 90 || finalExam >=90 ) printf("Student grade is A“); Cont. ! (logical NOT, logical negation) Returns true when its condition is false, & vice versa if ( !( grade == 20 ) ) printf(“hello world“); Alternative: if ( grade != 20 ) printf(“hello world“); False ! if (True) True ! if (False) Logical Operators Sample Program -1 To calculate the division Input: marks of 5 different subjects Rules Percentage above or equal to 60 - First division Percentage between 50 and 59 - Second division Percentage between 40 and 49 - Third division Percentage less than 40 – Fail Solution Nested if-else Logical operators Go to Program Go to Program Sample Program -2 A company insures its drivers in the following cases: If the driver is married If the driver is unmarried, male & above 30 years of age If the driver is unmarried, female & above 25 years of age If the marital status, gender and age of the driver are the inputs, write a program to determine whether the driver is to be insured or not. Flowchart Go to Program without logical operator Go to Program with logical operator (ms is married) OR (ms is unmarried and g is male and age is > 30) OR (ms is unmarried and g is . | CSC103: Introduction to Computer and Programming Lecture No 8 Previous Lecture Example programs – printf, scanf Decision control structure Relational operator in C if statement if-else statement Today’s lecture outline Nested if else statement Logical operator in C Conditional operator Nested if else It is possible to write an entire if-else with either the if statement block or else statement block Nested if else flowchart Start Display “Enter either 1 or 2” Read x Display “you entered other than 1 or 2” Go to program x == 1 Yes No x == 2 No Yes Display “you entered 1” End Display “you entered 2” Forms of if statement Cont. Logical Operators && (logical AND) true if both conditions are true if ( gender == 1 && age >= 65 ) senior++; || (logical OR) true if either of condition is true if (semesterAvg >= 90 || finalExam >=90 ) printf("Student grade is A“); Cont. ! (logical NOT, logical negation) Returns true when its condition is false, & vice versa if ( !( grade == 20 ) ) .
TÀI LIỆU LIÊN QUAN
Lecture Introduction to computer and programming - Lecture No 6
Lecture Introduction to computer and programming - Lecture No 8
Lecture Introduction to computer and programming - Lecture No 9
Lecture Introduction to computer and programming - Lecture No 10
Lecture Introduction to computer and programming - Lecture No 11
Lecture Introduction to computer and programming - Lecture No 12
Lecture Introduction to computer and programming - Lecture No 13
Lecture Introduction to computer and programming - Lecture No 14
Lecture Introduction to computer and programming - Lecture No 15
Lecture Introduction to computer and programming - Lecture No 16
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.