题目内容

以下程序是求出x、y、z三个数的最小值,请把程序填写完整。 #include "stdio.h" void main( ) { int x=4,y=5,z=8,u,v; u=x

查看答案
更多问题

下列程序的运行结果是__________ ____。 #include "stdio.h" void main() { int a=-10,b=-3; printf("%d,",a>b?a:b+1); printf("%d,",(a-b,a+b)); printf("%d",a-b?a-b:a+b); }

下面程序的运行结果是_________ _____。 #include "stdio.h" void main() { int x,y,z; x=1;y=1;z=3; x=y--<=x||x+y!=z; printf("%d,%d",x,y); }

下列程序运行时如果输入的是英文大写字母,则该程序的功能是______ 。 #include void main() { char c1,c2; c1=getchar(); c2=c1+32; printf("%c,%d\n",c2,c2); }

以下程序的运行结果是__________ ____。 #include "stdio.h" void main( ) { int a,b,d=241; a=d/100%9; b=(-1)&&(-1); printf("%d,%d",a,b); }

答案查题题库