【简答题】阅读下面语句,则程序的执行结果是【 】。 include 'stdio.h' main() { int a=-1,b=1,k; if((++a<0)&&!(b--<=0)) printf('%d,%d/',a,b); else printf('%d,%d/n',b,a);}
【单选题】阅读下面语句,则程序的执行结果是()。#includeusingnamespacestd;intmain(){inta=-1,b=1;if((++a<0)&&!(b--<=0)) cout<
【单选题】关于“无边晴雪天山出,不断风云地极来”分析错误的是( )。
D.
此联以开阔的眼界,抓住边塞特有的“晴雪天山”与“风云地极”的特点来写边塞的雄伟壮观,构思非常巧妙。
【简答题】【选择语句编程】 阅读下面语句,则程序的执行结果是____。 #include void main() { int a=-1,b=1; if((++a<0)&&! (b- -<=0) ) printf("%d,%d\n",a,b); else printf("%d,%d\n",b,a); }
【单选题】“无边晴雪天山出:不断风云地极来”的“天山”指的是( )
【单选题】阅读下面语句,则程序的执行结果是( )。 #include void main() { int a=-1,b=1; if((++a<0)&&!(b--<=0)) printf(“%d,%d\n”,a,b); else printf(“%d,%d”,b,a); }