Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống
1
/ 31 trang
THÔNG TIN TÀI LIỆU
Thông tin cơ bản
Định dạng
Số trang
31
Dung lượng
201,39 KB
Nội dung
30 Essentials of Counter-Controlled Repetition • Counter-controlled repetition requires – – – – Name of control variable/loop counter Initial value of control variable Condition to test for final value Increment/decrement to modify control variable when looping 2003 Prentice Hall, Inc All rights reserved // Fig 2.16: fig02_16.cpp // Counter-controlled repetition #include using std::cout; using std::endl; // function main begins program execution int main() { int counter = 1; // initialization 10 while ( counter