网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

请写出如下程序的输出结果:

#include

int a[]={2,4,6,8,10};

int &index(int i)

{ return a[i];

}

void main()

{

int i;

index(3)=12;

for (i=0;i<=4;i++)

cout<


参考答案

更多 “ 请写出如下程序的输出结果:#includeint a[]={2,4,6,8,10};int index(int i){ return a[i];}void main(){int i;index(3)=12;for (i=0;i=4;i++)cout ” 相关考题
考题 下述程序的输出结果是includevoid main(){int a[5]={2,4,6,8,10};int*p=a,**q=p; 下述程序的输出结果是 #include<stdio.h> void main() { int a[5]={2,4,6,8,10}; int*p=a,**q=p; printf("%d,",*(p++)); pfintf("%d",**q);}A.4,4B.2,2C.4,5D.2,4

考题 下述程序的输出结果是()。includevoid main(){ int a[5]={2,4,6,8,10};int*p=a,**q=p; printf("%d,",*(p++)); printf("%d",* *q);}A.4,4B.2,2C.4,5D.2,4

考题 1、请写出如下程序的输出结果和运行原理: age = 13 if age >= 18: print('your age is', age) print('adult') else: print('your age is', age) print('teenager')

考题 已知字符‘7’的ASCII码值是55,请写出如下程序的输出结果: #include <stdio.h> int main() { char c=‘5’ ; printf(“%d",c+3); }

考题 15、已知字符‘7’的ASCII码值是55,请写出如下程序的输出结果: #include <stdio.h> int main() { char c=‘5’ ; printf(“%d",c+3); }

考题 请写出如下程序的执行结果。 list(range(2,11,3))

考题 3、请写出如下程序的输出结果和运行原理: n = 1 while n <= 100: print(n) n = n + 1 print('END')

考题 1、请写出如下程序运行的输出结果_________ string nameS="李敏"; double heighS=1.75; const char hm='米'; Console.WriteLine(nameS+"的身高是:"+heighS+hm); 2、请写出如下程序运行的输出结果_________ string naviG=@"请注意having这个单词"; Console.WriteLine(naviG);

考题 调试下列程序,写出输出结果,并解释输出结果 #include <iostream> using namespace std; int main() { void fun(int, int); int a, b; fun(2, a); fun(3, b); cout << "a + b = " << a + b << endl; return 0; } void fun(int m, int n) { n = m + 4; }