填空题

表示条件;10<x<100或x<0的C语言表达式是 【10】 。

【参考答案】

(x>10&&x<100)||x<0
<上一题 目录 下一题>
热门 试题

填空题
以下程序的输出结果是 【19】 。 #include<stdio.h> main() struct stru int a; float b; char d[4]; ; printf( %d n ,sizeof(struct stru));
填空题
以下程序的输出结果是 【9】 。 void fun() static int a; a+=2; printf( %d ,A) ; main() int cc; for(cc=1;cc<=4;cc++)fun(); printf( n );
相关试题
  • 以下程序输出矩阵中值为。的元素的行下标和...
  • 以下程序段打开文件后,先利用fseek函数将...
  • 若有如下程序: main() int s[]=1...
  • 以下程序的输出结果是 【8】 。 main(...