程序改错#include "stdio.h"main( ){ int x=4,y=5;z; ______ if(x
程序改错#include "stdio.h"main( ){ int x=4,y=5;z; ______ if(x
以下程序的输出结果是 #include void main() { char c='z'; printf("%c",c-25); }
以下程序的输出结果是 #include void main() { char c='z'; printf("%c",c-25); }
有以下程序 #include <stdio.h> int main(){ int x=1,y=2,z=3; if(x>y) if(y<z) printf("%d",++z); else printf("%d",++y); printf("%d ", x++ ); }
有以下程序 #include <stdio.h> int main(){ int x=1,y=2,z=3; if(x>y) if(y<z) printf("%d",++z); else printf("%d",++y); printf("%d ", x++ ); }
以下程序的输出结果是_____。#include <;iostream>;using namespace std;void main() { char c='z'; cout<;<;c-25; } A: a B: Z C: z-25 D: y
以下程序的输出结果是_____。#include <;iostream>;using namespace std;void main() { char c='z'; cout<;<;c-25; } A: a B: Z C: z-25 D: y
执行以下程序后,输出结果为() #include main( ) { char c1,c2,c3; c1=’a’; c2=’z’; c3=c2-c1; printf(“%c,%c,%d”,c1,c2,c3); } A: a,z,25 B: A,Z,25 C: 97,122,25 D: a,z,↓
执行以下程序后,输出结果为() #include main( ) { char c1,c2,c3; c1=’a’; c2=’z’; c3=c2-c1; printf(“%c,%c,%d”,c1,c2,c3); } A: a,z,25 B: A,Z,25 C: 97,122,25 D: a,z,↓
下列程序段的运行结果____________。#include<stdio.h>voidmain(){charc='z';printf("%c\n",c-1);}
下列程序段的运行结果____________。#include<stdio.h>voidmain(){charc='z';printf("%c\n",c-1);}
以下程序的运行结果是( )。 #include fac2(int x,int y) { int z; z=(x+y)%4; return z;} fac1(int x,int y) { int z; z=fac2(x++,++y); return z; } int main() { int a=10,b=20; printf("%d",fac1(a,b)); return 0; }
以下程序的运行结果是( )。 #include fac2(int x,int y) { int z; z=(x+y)%4; return z;} fac1(int x,int y) { int z; z=fac2(x++,++y); return z; } int main() { int a=10,b=20; printf("%d",fac1(a,b)); return 0; }
下列程序的输出结果是16.00,请在程序中填空。 #include "stdio.h" main( ) { int a=9,b=2; float x=________ , y=1.1,z; z=a/2+b*x/y+1/2; printf("%5.2f", z ); }
下列程序的输出结果是16.00,请在程序中填空。 #include "stdio.h" main( ) { int a=9,b=2; float x=________ , y=1.1,z; z=a/2+b*x/y+1/2; printf("%5.2f", z ); }
下列程序的运行结果是()。#include"stdio.h"intfun(inta,intb){intmax;if(a<b)max=b;elsemax=a;return(max);}main(){intx=7,y=9,z;z=fun(x,y);printf("%d",z);}
下列程序的运行结果是()。#include"stdio.h"intfun(inta,intb){intmax;if(a<b)max=b;elsemax=a;return(max);}main(){intx=7,y=9,z;z=fun(x,y);printf("%d",z);}
下列程序运行的结果是__________ 。#include <;stdio.h>;double sub(double x, double y, double z){y -= 1.0;z = z + x;return z;}int main( ){double a=2.5, b=9.0;printf("%6.2f\n", sub(b-a, a, a));return 0;}
下列程序运行的结果是__________ 。#include <;stdio.h>;double sub(double x, double y, double z){y -= 1.0;z = z + x;return z;}int main( ){double a=2.5, b=9.0;printf("%6.2f\n", sub(b-a, a, a));return 0;}