单项选择题有以下程序: #include<stdio.h> main() { int a=1,b=0; for(;a<5;a++) { if(a%2==0)break; continue; b+=a: } printf( %d\n ,b); } 程序运行后的输出结果是( )。
单项选择题有以下程序: #include<stdio.h> main() { float a,b,c,t; a=3;b=7;c=1; if(a>b) {t=a;a=b;b=t;} if(a>c) {t=a;a=c;c=t;} if(b>c) {t=b;b=c;c=t;} printf( %5.2f,%5.2f,%5.2f ,a,b,c); } 程序运行后的输出结果是(其中口代表空格)( )。