“if”, “? :”, “switch”or other judgement statements,
find out the biggest one of the two numbers.
[单选题]What agreement do the two speakers reach at the end of the conversation?A. The woman can take two days off. B. The woman needs to do some extra work.C. The woman should buy some travelling materials.
[单选题]Passage TwoWhen we see well, we do not think about our eyes very often. It is only when we cannot see perfectly that we realize how important our eyes are.People who are nearsighted can only see things that are very close to their eyes. Everything el
[单选题]In C language, (70) variables have to be defined outside of any function,this (71) actual storage for it.(70) A.internalB.exportC.outputD.external(71) A.locatesB.allocatesC.looks forD.finds
[主观题]What will the following C code do?int *ptr;ptr =(int *)Ox67a9;*ptr = Oxaa55;
[单选题]下列程序段的输出结果是int a=1234;float b=123.456;double c=12345.54321;printf("%2d,%2.1f,%2.1f",a,b,c);A.无输出 B.12,123.5,12345.5 C.1234,123.5,12345.5 D.1234,123.4,12345.5
[单选题]设有结构体类型定义: struct try { int one; float two; }*str;若要动态开辟一个结构单元,使指针str指向其首地址,正确的语句是______。A.str=(try*)malloc(sizeof(try));B.*str=(struct try*)malloc(sizeof(struct try));C.str=(strucy try*)malloc(sizeof(struct try));D.str=(struc try)malloc(sizeof(struc
[单选题]有以下程序 include main() { int i=5; do { if(i%3==1)有以下程序 #include <stdio.h> main() { int i=5; do { if(i%3==1) if(i%5==2) { printf"*%d",i); break; } i++; } while(i!=0); printf("/n"); } 程序的运行结果是______。A.*7B.*3*5C.*5D.*2*6
[单选题]有下列程序:main(){ int y=20;do{y--;}while(--y);phntf("%d/n",y--);}当执行程序时,输出的结果是( )。A.-1B.1C.4D.0
[单选题]有下列程序: main() { int y=20; do{y--;} while(--y); printf("%d/n",y--); } 当执行程序时,输出的结果是( )。A.-1B.1C.4D.0
[单选题]有下列程序: main() { int y=20; do{y--;}while(--y); printf("%d/n",y--); } 当执行程序时,输出的结果是( )。A.-1B.1C.4D.0