注意:本随笔是直接参考《C++Primer(第四版)习题解答(完整版)》中的。此处主要是便于本人以后反复阅读。
习题1.11 用while 循环编程,输出10 到0递减的自然数。然后用for 循环重写该程序。
【解答】
用while循环编写的程序:
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int i = 10; 7 while (i >= 0) 8 { 9 cout << i << " "; 10 --i; 11 } 12 return 0; 13 }
用for循环编写的程序:
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 for (int i = 10; i >= 0;--i) 7 { 8 cout << i << " "; 9 } 10 return 0; 11 }
时间: 2024-10-27 00:43:20