图1; 1,mian2,int a,b,c;3,float ave;4,a=3;b=4;c=4;5,ave=(a+b+c)/3.0;6,printf("平均值是:%f",ave);7,3.67 图2;1,()2,a=10;3,b=7;4,c=a%b;5,printf("余数=%d",c);6,3