如果输入:a=6,b=8,则输出结果是___。 选择一项: A. ① a+b=15 9写出程序的运行结果。 main( ) { int a=0; for ( a=0;a<3;a++ ); printf ( " %d\n", a ); }输出结果是___。 D. 3 10写出程序的运行结果。#include <stdio.h> main( ) { int i=0,j...
o.h>void main() {int a,b,c,max;printf("a,b,c:");scanf("%d %d %d", a, b, c);max=a;if(max<b) max=b;if(max<c) max=c;printf("%d\n", max);}13编写一程序,从键盘输入10个实数,计算并输出算术平均数。#include <stdi