一个c语言问题
#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 函数中
怎么回事? [展开]
t***
2005-12-07 16:07:33
举报