选择题1.0分
C试卷
有以下程序
#include <stdio.h>
main()
{int x;
scanf(“%d”,&x);
if(x<=3); else
if(x!=10)
printf(“%d\n”,x);}  程序运行时,输入的值在哪个范围才会有输出结果

A不等于10的整数

B大于3且不等于10的整数

C大于3或等于10的整数

D小于3的整数

正确答案及相关解析

正确答案

B