写出下列程序的执行结果是:__________________。 #includeusing namespace std; void main() { int i = 1; while( i<;=10 ) if( ++i % 3 != 1 ) continue; else { cout <;<; i; if(i!=10) cout<;<;","; } }
举一反三
- 下面程序的输出结果是( )。 #include<iostream> using namespace std; void main() int i=1; while(i<=8) if(++i%3!=2)continue; else cout<<i; A: 369 B: 258 C: 36 D: 25
- 下面程序的运行结果是( )。 #include void main() { int i=1; while(i<=8) if(++i%3!=2)continue; else cout < 258
- 写出下列程序的执行结果是:__________________。 #includeusing namespace std; void main() { int i, j, x = 0; for( i=0; i<;=3; i++ ) { x++; for( j=0; j<;=3; j++ ) { if( j % 2 ) continue; x++; } x++; } cout <;<; "x=" <;<; x <;<; endl; }
- 下面程序的输出结果是( )。 #include<iostream> using namespace std; void main() int i=1; while(i<=8) if(++i%3!=2)continue; else cout<<i; A: A) 369 B: B) 258 C: C) 36 D: D) 25
- 写出下列程序的执行结果是:__________________。 #include using namespace std; void main() { int i; for( i=100; i<=200; i++ ) { if ( ( i % 3 == 2) && ( i % 5 == 3 ) && ( i % 7 == 2 ) ) cout << i << endl; } }