【单选题】有以下程序,若运行时从键盘输入:18,11,则程序输出结果是_______ 。 #include "stdio.h" int main() { int a,b; printf("Enter a,b:"); scanf("%d,%d",&a,&b); while(a!=b) { while(a>b) a-=b; while(b>a) b-=a; } printf("%3d%3d\n",a,b)...
【简答题】China is rich in water-power resources, leading the world in _________ potential.
【多选题】电子信息处理能力战斗效能的提高主要依靠电子信息系统对目标的()
【单选题】20 下列格式中,属于图像文件格式的是( )
【单选题】有以下程序,若运行时从键盘输入:18,11,则程序输出结果是( )。 #include "stdio.h" void main() { int a,b; printf("Enter a,b:");scanf("%d,%d",&a,&b); while(a!=b) { while(a>b) a-=b; while(b>a) b-=a; } printf("%3d%3d\n",a,b); }
【单选题】从键盘输入 "3 , 4 " ,下面程序输出结果是( )。 main( ) { int a,b,s; scanf("%d,%d",&a,&b); s=a; if (s>b) s=b; s=s*s; printf("%d\n",s) ; }
【单选题】“如在路有疾患,不能自胜致者,当界官司收付村坊安养”,上文讲的是哪一类救助活动?
【简答题】马斯洛需要层次理论对于企业理解消费者行为动机,针对消费者需要特点制定营销策略具有什么价值 ?
【单选题】有以下程序,若运行时从键盘输入:18,11,则程序输出结果是_______ 。 #include "stdio.h" void main() { int a,b; printf("Enter a,b:"); scanf("%d,%d",&a,&b); while(a!=b) { while(a>b) a-=b; while(b>a) b-=a; } printf("%3d%3d\n",a,b...