[C++ Primer] 练习1.10
2017-02-17 本文已影响0人
和平北路
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int main() {
int start = 10;
while (start >= 0) {
cout << "current number is " << start << endl;
--start;
}
}