A. 用c語言寫一個a+b代碼,要求盡可能短
#include int main() { int a,b,c,result; printf("please input a,b,c:"); scanf("%d,%d,%d",&a,&b,&c);//輸入時,每個數據用逗號隔開;如:1,2,3 result=a+b*c; printf("the result of a+b*c is %d",result); return 0; }