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 10
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Introduction to computer and programming - Lecture No 10
Tuyết Nhung
85
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: Functions in C, a function with a parameter, example: area of a ring, implementing functions in C, run-time stack, getting it all to work, tying it all together, problem solving using functions,. | CSC103: Introduction to Computer and Programming Lecture No 10 Previous lecture Example programs nested if-else nested conditional operator Loops while loop Today’s lecture outline for loop break statement continue statement do while loop for loop The most popular looping instruction The for loop allows us to specify three things in a single line Initialization: Setting a loop counter to an initial value Condition: Testing loop counter to check whether it reaches the desired number of repetitions Increment / decrement part: Increase or decrease the value of loop counter each time when the statement within the loop are executed General form of for loop for ( ; ; ) { do this; and this; and this; } initialization condition Incr/ decr Incr/ decr stands for increment/ decrement Sequence of execution of for loop for ( ; ; ) { do this; and this; and this; } initialization condition Incr/ decr 1 2 3 4 5 6 7 8 Cont. It is important to note that the initialization, testing and incrementation part of a for loop can be replaced by any valid expression. Ways for writing for loop Cont. Cont. Nested for loop /* Demonstration of nested loops */ main( ) { int r, c, sum ; for ( r = 1 ; r <= 3 ; r++ ) /* outer loop */ { for ( c = 1 ; c <= 2 ; c++ ) /* inner loop */ { sum = r + c ; printf ( "r = %d c = %d sum = %d\n", r, c, sum ) ; } } } Go to program Example program 1 Write a program to find the factorial value of any number entered through the keyboard. Write a program Example program 2 Write a program that displays the table of x up to y. The value of x and y is input by the user. e.g. x = 4 and y = 5 4 x 1 = 4 4 x 2 = 8 4 x 3 = 12 4 x 4 = 16 4 x 5 = 20 Write a program The break Statement There are situations where we want to jump out of a loop instantly, without waiting to get back to the conditional test. The keyword break allows us to do this When break is encountered inside any loop, control automatically passes to the first statement after the loop. A break is usually . | CSC103: Introduction to Computer and Programming Lecture No 10 Previous lecture Example programs nested if-else nested conditional operator Loops while loop Today’s lecture outline for loop break statement continue statement do while loop for loop The most popular looping instruction The for loop allows us to specify three things in a single line Initialization: Setting a loop counter to an initial value Condition: Testing loop counter to check whether it reaches the desired number of repetitions Increment / decrement part: Increase or decrease the value of loop counter each time when the statement within the loop are executed General form of for loop for ( ; ; ) { do this; and this; and this; } initialization condition Incr/ decr Incr/ decr stands for increment/ decrement Sequence of execution of for loop for ( ; ; ) { do this; and this; and this; } initialization condition Incr/ decr 1 2 3 4 5 6 7 8 Cont. It is important to note that the initialization, testing and incrementation .
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.