|
做完记得短消息给我,别回帖,不然别人没法做了
一、根据下面程序段屏幕上输出结果为?
x=5;
y=0;
if(y)
if (X)
printf("Z");
else printf("X");
二、根据下面程序段屏幕上输出结果为?
int a=5,b=2;
printf("%d",(a++,++b,a+b));
printf("/n%d,%d,%d",a++,++b,a+b);
三、程序填空,要求运算出 1-2+3-4+5-6......+99-100=?
#include"stdio.h"
main()
{int a,b;
for(a=1,b=0;a<101;a++)
b+=______;
printf("b=%d",b)
} |
|