#include<stdio.h>main(){ float e,f,c; printf("please input to e and f\n"); scanf( "%f%f",&e,&f); c=e>f?e:f; printf("MAX of (%f,%f) is %f"e,f,c); } 用win-tc编译显示错误 错误 123.c 9: 函数调用缺少 ')'在 main 函数中 警告 123.c 10: 'c' 被赋值但却没有使用在 main 函数中 怎么回事?
热心网友
倒数第二行"MAX of (%f,%f) is %f"后面少了一个逗号