[单选题]

有以下程序:include using namespace std;int main (){int x=15;while (x>10&&am

有以下程序: #include <iostream> using namespace std; int main () { int x=15; while (x>10&&x<50) { x++; if (x/3) { x++; break; } } cout<<x<<endl; return 0; } 执行后的输出结果是

A.15

B.16

C.17

D.18

参考答案与解析:

相关试题

有以下程序:#include using namespace std;int m

[单选题]有以下程序:include using namespace std;int main ( ){ int n[3],i,j,k = 2; for(i有以下程序: #include <iostream> using namespace std; int main ( ) { int n[3],i,j,k = 2; for(i = 0;i<k;i++) n[i] = O; for(i = O;i<k;i++) { for(j = O;j<k;j++) n[j] = n[i] + 1; } cout<<

  • 查看答案
  • 有以下程序: #include using namespace std; int

    [单选题]有以下程序: include using namespace std; int main( ) { int x=15; while(x>10&有以下程序:#include<iostream>using namespace std;int main( ){int x=15;while(x>10&&x<50){x + +;if(x/3){x++; break;}}cout<<x<<endl;return 0;}执行后的输出结果是A.15B.16C.17D.18

  • 查看答案
  • 有以下程序#include using namespace std;int a;

    [单选题]有以下程序include using namespace std;int a;int fun ();int main (){extern int a有以下程序#include <iostream>using namespace std;int a;int fun ();int main (){ extern int a; int b; a = 100; b = fun(); cout<<b<<end1; return 0;}int fun{){ extern int a; return (10*

  • 查看答案
  • 有以下程序:#include using namespace std;int s

    [单选题]有以下程序:include using namespace std;int s=0;class sample{ static int n;publi有以下程序: #include <iostream> using namespace std; int s=0; class sample { static int n; public: sample (int i) { n=i; } static void add() { s+=n; } }; int sample::n=0;A.2B.5C.7D.

  • 查看答案
  • 有以下程序:#include using namespace std;int f

    [单选题]有以下程序:include using namespace std;int f1(int x, int y){ return x>y ? x:y;}有以下程序: #include <iostream> using namespace std; int f1(int x, int y) { return x>y ? x:y; } int f2(int x, int y) { return x>y? y:x; } int main ( ) { int a = 4,b = 3,c = 5,d,e,f;

  • 查看答案
  • 若有以下程序:#include using namespace std;int

    [单选题]若有以下程序:include using namespace std;int f(){static int i = 0;int s = 1;s£«=若有以下程序: #include <iostream> using namespace std; int f() { static int i = 0; int s = 1; s+=i; i++; return s; } int main() { int i,a = 0; for(i = 0;i<5;i++) a+=f(); cout<<a<<end

  • 查看答案
  • 有如下程序:#include using namespace std;int m

    [单选题]有如下程序:include using namespace std;int main( ){int*P;*P=9;cout<<"The value有如下程序: #include <iostream> using namespace std; int main( ){ int*P; *P=9; cout<<"The value at P:"<<*P: return 0; } 编译运行程序将出现的情况是A.编译时出现语法错误,不能生成可执行文件B.运行时一定输出:The value at P:

  • 查看答案
  • 有如下程序:#include using namespace std;int m

    [单选题]有如下程序:include using namespace std;int main(){ int *p; *p = 9;cout << "The有如下程序: #include <iostream> using namespace std; int main() { int *p; *p = 9; cout << "The value at p: " << *p; return 0; } 编译运行程序将出现的情况是( )。A.编译时出现语法错误,不能生成可执行文件B.运行时一定输出:The

  • 查看答案
  • 有下列程序段:#include using namespace std;int

    [单选题]有下列程序段:include using namespace std;int main() { char b[]= "Hello,you"; b[有下列程序段: #include <iostream> using namespace std; int main() { char b[] = "Hello,you"; b[5] = 0; cout<<b<<end1; return 0; } 执行此程序后,得到的输出结果是( )。A.Hello,youB.Hello0youC.HelloD.

  • 查看答案
  • 有如下程序: include using namespace std; int

    [主观题]有如下程序: include using namespace std; int strle(char a[],char b[]) {int num=有如下程序:include <iostream>using namespace std;int strle(char a[],char b[]){int num=O,n=O;while (* (a+num) !='/0')num++;while (b [n] ){* (a+num)=b [n];num++;n++;}return(num);}i

  • 查看答案
  • 有以下程序:#include using namespace std;int m