题目内容

阅读以下程序,若输入60,写出程序运行结果。#includeint main(){ int x;scanf("%d",&x);if (x>=60)printf("pass");elseprintf("fail");}

查看答案
更多问题

表达式!(3<4==5)的值是()

以下程序判断输入的整数能否被3或7整除,请填空。int main(){ int x,f=0;scanf( “%d”,&x );if(1)(2)if (f==1) printf("YES\n");else printf("NO\n");

当输入字符A时,分析下列程序的运行结果()。#include"stdio.h"int main(){char ch,other;ch=getchar();other=getchar();switch(ch){ case 65:printf("%c",ch);case 66:printf("%c",ch);default:printf("%c\n",other);}return 0;}

int main()执行结果是(){int x=2,y=1;switch(x){case 1: y=x ; break;case 2: y=-x ;case 3: y=x*3 ; break;case 4: y=4*x;}printf(“%d\n”,y);}

答案查题题库