下面来看看一个C++中无限循环的简单例子。 #include <iostream> using namespace std; int main () { for (; ;) { cout<<"Infinitive For Loop"<<endl; } return 0; }.
確定! 回上一頁