若有以下程序: #include〈iostream〉 using namespace std; int main() int data[4],i,j,temp; for (i=O; i cin>>data[i]; for (i=1; i j = i-1; temp = data[i]; while (data [j ] >temp&&j >=0) data[j+1] = data[j]; j--; data[j+1] = temp; for(i=O;i<4;i++...
有如下程序: #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:9C.运行时一定输出:The value at P:*9D.运行时有可能出错...
以下程序的输出结果是#include <iostream>using namespace std;int main(){ cout.fill('*'); cout.w
1若有以下程序: #include <iostream> using namespace Std; int main() int i ; int a[3] [3] = ’1’,’2’,’3’,’4’,’5’,’6’,’7’,’8’,’9’; for(i=0;i<3;i++) cout<<a[i] [1]<<" "; cout<<end1; return 0; 执行后的输出结果是( )。 A.50 53 56B.49 ...
有以下程序: #include<iostream> using namespace std; int main( ) { int a=5;b=4,c=3,d=2; if(a>b>c) cout<<d<<end1; else if((c-1>:d) ==1) cout<<d+1<<end1; else cout<<d+2<<end1; return 0; } 执行后的输出结果是( )。 A.2B.3C.4D.编译时有错,无结果 相关知识点...
有如下程序: #include<iostream> using namespace std; int main(){ int sum; for(int i=0;i<6;i+=3){ sum=i; for(int j=i;j<6;j++)sum+=j; } cout<<sum<<end1; return 0; } 运行时的输出结果是( )。 A.3B.10C.12D.15 相关知识点: 试题来源: 解析 D [解析] 此题考查的是for...
有下列程序: #include<iostream> using namespace std; int main(){ void function(double val); double val; function(val); cout<<val; return 0; } void fimction(double val){ vA. 编译出错,无法运行 B. 输出3 C. 输出:3.0 D. 输出一个不确定的数 ...
有以下程序: #include<iostream> using namespace std; int main () { int a[]={1,2,3, 4,5, 6, 7,8,9, 10, 11, 12}; int *p=a+5, *q=0; *q=* (p+5); cout<<*p<<" "<<*q<<end1; return 0; } A.运行后报错B.66C.6 12D.5 5 相关知识点: 试题来源: 解析 A [解析...
有以下程序: #include <iostream> using namespace std; int main() int x; for(int i=1;i<=100;i++) x=i; if (++x%2==0) if (++x%3==0) if (++x%7==0) cout<<x<<","; cout<<end1; return 0; 执行后输出结果是( )。 A.39,81B.42,84C.26,68D.28,70 答案 D[解析] 程...
若有以下程序段: #include <iostream> using namespace std; int main () int a[]=1,4,5; int *p=&a[0],x=6, y,z; for (y=0; y<3; y++) z= ( (* (p+y) <x) *(p+y) :x); cout<<z<<end1; return 0; 程序运行后的输出结果是( )。 A.1B.4C.5D.2 答案 C[解析] 本题...