下面程序段的运行结果是void main(){int t,a,b,c;a=1;b=2;c=2:while(a{t=a;a=b;b=t;c--;}cout }A.1,2,0B.2,1,0C.1,2,1D.2,1,1

下面程序段的运行结果是

void main()

{

int t,a,b,c;

a=1;b=2;c=2:

while(a

{t=a;a=b;b=t;c--;}

cout <<<<<

}

A.1,2,0

B.2,1,0

C.1,2,1

D.2,1,1


相关考题:

下面程序段的运行结果是 void main() { int t,a,b,c; a=1;b=2;C=2; while(a<b<c) { t=a;a=b;b=t;c--;} cout << a << " ," << b << " ," << c; }A.1,2,0B.2,1,0C.1,2,1D.2,1,1

下面程序的运行结果是( )。include define SlZE 12 main() {char s[SIZE];int i;for(i=0 下面程序的运行结果是( )。include<stdio.h>define SlZE 12main(){char s[SIZE];int i;for(i=0;i<SIZE;i++) s[i]='A'+i+32;sub(s,5,SIZE-1);for(i=0;i<SIZE;i++)printf("%c",s[i]);printf("\n");}sub(char *a,int t1,int t2){ char ch;while(t1<t2){ ch=*(a+t1);*(a+t1)=*(a+t2);*(a+t2)=ch;t1++;t2--;}}

下面程序的输出结果是()。includeusing namespace std;void swap(int x[2]){int t; t= 下面程序的输出结果是( )。 #include<iostream> using namespace std; void swap(int x[2]) { int t; t=x[0]; x[0]=x[1]; x[1]=t; } void main() { int a[2]={4,8}; swap(a); cout<<a[0]<<" "<<a[1]; }A.4 8B.8 4C.4 4D.8 8

下面程序段的运行结果是void main ( ){int t, a, b, C;a=1;b=2;C=2;while(a<b<c){t=a;a=b;b=t;c--;}cout < < a < < "," < < b < < "," < < C;}A.1,2,0B.2,1,0C.1,2,1D.2,1,1

下面程序的运行结果是#include #define SIZE 12sub(char *a,int t1,int t2) { char ch; while(t1t2) { ch=*(a+t1); *(a+t1)=*(a+t2); *(a+t2)=ch; t1++;t2--; }} main() { char s[SIZE]={’A’,’B’,’C’,’D’,’E’,’F’,’G’,’H’,’I’,’J’,’K’,’L’}; int i; sub(s,7,SIZE-1); for(i=0;iSIZE;i++) printf("%c ",s[i]); printf("\n");}

5、假定所有变量均已正确说明,以下程序段运行后的输出结果是 。 int t,a=1,b=5,c=-2; while(a>b>c) { t=a; a=b; b=t; c++;} printf("%d, %d, %d", a,b,c);A.1, 5, 0B.1, 5, -2C.5, 1, -1D.5, 1, -2

假定所有变量均已正确说明,以下程序段运行后的输出结果是 。int t,a=1,b=5,c=-2; while(a>b>c) { t=a; a=b; b=t; c++;} printf("%d, %d, %d", a,b,c);A.1, 5, 0B.1, 5, -2C.5, 1, -1D.5, 1, -2

下面程序段的运行结果是:()。 int a=1;b=2;c=2; while (a<b<c) {t=a;a=b;b=t;c--;} cout<<a<<”,”<<b<<”,”<<c;A.1,2,0B.2,1,0C.1,2,1D.2,1,1

假定所有变量均已正确说明,以下程序段运行后的输出结果是()。 int t,a=1,b=5,c=-2; while(a>b>c) { t=a; a=b; b=t; c++;} printf("%d, %d, %d", a,b,c);A.1, 5, 0B.1, 5, -2C.5, 1, -1D.5, 1, -2