c++ primer 學習之路 (22)第5章 循環和關係表達式 for循環 計算階乘 for循環訪問字符串

5.1 for循環 C++中的for循環可以輕鬆地完成這種任務。 #include<iostream> using namespace std; int main() {        int i;     for (i = 0; i < 5; i++)         cout << "C++ knows loops.\n";     cout << "c++ knpws when to sto
相關文章
相關標籤/搜索