#include<iostream> using namespace std; int main() { int i = 0; while( 1 ) { cout << i << endl; if( i>10 ) { break; } i = i+1; } return 0; } ...
確定! 回上一頁