【单选题】当输入数据形式为 “ 25,13,10 ”时,下面程序代码段输出的结果是 int a, b, c; scanf("%d%d%d", &a, &b, &c); printf("a+b+c=%d\n", a+b+c); (
【单选题】执行下面程序代码后的输出结果是()。 #include int main() { char *u= "1243567", *s; int *v; v = (int *)u; v++; s = (char *)v; cout<< /div>
【单选题】如果从键盘输入数据 23 ,下面程序代码段输出的结果是 int x; scanf("%d", &x); if (x > 10) { printf("%d", x); } if (x > 20) { printf("%d", x); } if (x > 30) { printf("%d", x); }
【单选题】下面程序代码段的输出结果是 int a=15, b=10, c=20, d; d = a > 12 ? b : c; switch D. { case 5: printf("%d,", a); case 10: printf("%d,", b); case 20: printf("%d,", c); default: printf("#\n"); }
【单选题】下面程序代码段输出的结果是()。int x=2, y=5;printf("%f\n", (float)(x / y));
【单选题】下面程序代码的输出结果是()。 int num1=40; int num2=5; int ans=0; if ( num1/5==num2){ans=10;} if (num2%5==0) {ans=20;} if (num2==0){ans=30;} else {ans=40;} System.out.println("answer is :"+ans);
【判断题】PN结具有双向导电性()A. 对 B. 错