#include
void main()
{ int a,b,c,s
printf("Please input 3 numbers:a,b,c\n");
scanf("%d,%d,%d",&a,&b,&c);
s=a*b+c;
printf("The result is:%d",s);
}
int express(int A,int B,int C)
{
return A*B+C;
}
在主函数调用此函数就OK了
A+B*C是否也要支持啊?