有以下程序:
include <stdio.h>
main( )
{ int a=2,b;
b=a<<2;printf("%d/n",b);
}
程序运行后的输出结果是( )。
A.2
B.4
C.6
D.8
[单选题]有以下程序#include <stdio.h>main( ){ int a[ ]={1,2,3,4},y,*p=&a[3];--p; y=*p; printf("y=%d/n",y);}程序的运行结果是A.)y=0B.)y=1C.)y=2D.)y=3
[单选题]有以下程序#include <stdio.h>main(){ int a[ ]={2,3,5,4},i;for(i=0;i<4;i++)switch(i%2){ case 0:switch(a[i]%2){case 0:a[i]++;break;case 1:a[i]--;}break;case 1:a[i ] =0;}for(i=0;i<4;i++) printf("%d",a[i]); printf("/n");}程序运行后的输出结果是A.)3 3 4 4B.
[单选题]有以下程序:include<stdio.h>main( ){ int a=-2,b=0;while(a++++b);printf("%d,%d/n",a,b);}程序运行后的输出结果是( )。A.1,3B.0,2C.0,3D.1,2
[单选题]有以下程序#include<stdio.h>main( ){int a[]={2,3,5,4},i;for(i=0;i<4;i++)switch(i%2){case 0:switch(a[i]%2){case 0:a[i]++;break;case 1:a[i]--;}break;case 1:a[i]=O;}for(i=O;i<4;i++)prinff(“%d”,a[i]);prinff(“\n”);}程序运行后的输出结果是A.3 3 4 4B.2 0 5 0C.3 0
[单选题]有以下程序#include<stdio.h>main( ){int a[]={2,3,5,4},i;for(i=0;i<4;i++)switch(i%2){case 0:switch(a[i]%2){case 0:a[i]++;break;case 1:a[i]--;}break;case 1:a[i]=O;}for(i=O;i<4;i++)prinff(“%d”,a[i]);prinff(“\n”);}程序运行后的输出结果是A.3 3 4 4B.2 0 5 0C.3 0
[试题]( 8 )有以下程序#include <stdio.h>main (){ int m,n;scanf ( " %d%d " ,&m,&n ) ;while ( m!=n ){ while ( m>n ) m=m-n;while ( m<n ) n=n-m;}printf ( " %d/n " ,m ) ;}程序运行后,当输入 14 63 < 回车 > 时,输出结果是 ( 8 ) 。
[试题]( 7 )有以下程序#include <stdio.h>main (){ int a=1,b=2,c=3,d=0;if ( a==1 )if ( b!=2 )if ( c==3 ) d=1;else d=2;else if ( c!=3 ) d=3;else d=4;else d=5;printf ( " %d/n " ,d ) ;}程序运行后的输出结果是 ( 7 ) 。
[试题]( 9 )有以下程序#include <stdio.h>main (){ int i,j,a[][3]={1,2,3,4,5,6,7,8,9};for ( i=0;i<3;i++ )for ( j=i;j<3;j++ ) printf ( " %d%,a[i][j] ) ;printf ( " /n " ) ;}程序运行后的输出结果是 ( 9 ) 。
[试题]( 9 )有以下程序#include <stdio.h>main (){ int i,j,a[][3]={1,2,3,4,5,6,7,8,9};for ( i=0;i<3;i++ )for ( j=i;j<3;j++ ) printf ( " %d%,a[i][j] ) ;printf ( " /n " ) ;}程序运行后的输出结果是 ( 9 ) 。
[主观题]( 9 )有以下程序#include <stdio.h>main (){ int i,j,a[][3]={1,2,3,4,5,6,7,8,9};for ( i=0;i<3;i++ )for ( j=i;j<3;j++ ) printf ( " %d%,a[i][j] ) ;printf ( " /n " ) ;}程序运行后的输出结果是 ( 9 ) 。