#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"后面少了一個逗號