请问这个C语言程序哪里出错了?验证时总提示有一个错误.
#include
main()
{
\x09int c,t;
\x09int m;
\x09printf(Please input the number of c and t:\n);
\x09scanf(%d,%d,&c,&t);
\x09if(c==t)
\x09{
\x09\x09if(c>=50)
\x09\x09\x09m=c*80;
\x09\x09else
\x09\x09\x09m=c*90;
\x09}
\x09else
\x09{
\x09\x09if(c>t)
\x09\x09{
\x09\x09\x09if(t>=50)
\x09\x09\x09\x09m=t*80+(c-t)*60;
\x09\x09\x09else
\x09\x09\x09\x09m=t*90+(c-t)*60;
\x09\x09}
\x09\x09else
\x09\x09{
\x09\x09\x09if(c>=50)
\x09\x09\x09\x09m=c*80(t-c)*45;
\x09\x09\x09else
\x09\x09\x09\x09m=c*90+(t-c)*45;
\x09\x09}
\x09}
\x09printf(The money you need to pay is %d\n,m);
}
请问这个C语言程序哪里出错了?验证时总提示有一个错误.
答案:1 悬赏:60 手机版
解决时间 2021-08-23 04:05
- 提问者网友:几叶到寒
- 2021-08-22 08:45
最佳答案
- 五星知识达人网友:孤独入客枕
- 2021-08-22 09:38
#include<stdio.h>
main()
{
\x09int c,t;
\x09int m;
\x09printf("Please input the number of c and t:\n");
\x09scanf("%d%d",&c,&t); //这里吧逗号去掉变成"%d%d"
\x09
\x09if(c==t)
\x09{
\x09\x09if(c>=50)
\x09\x09\x09m=c*80;
\x09\x09else
\x09\x09\x09m=c*90;
\x09}
\x09else
\x09{
\x09\x09if(c>t)
\x09\x09{
\x09\x09\x09if(t>=50)
\x09\x09\x09\x09m=t*80+(c-t)*60;
\x09\x09\x09else
\x09\x09\x09\x09m=t*90+(c-t)*60;
\x09\x09}
\x09\x09else
\x09\x09{
\x09\x09\x09if(c>=50)
\x09\x09\x09\x09m=c*80*(t-c)*45; //缺个 乘号 *
\x09\x09\x09else
\x09\x09\x09\x09m=c*90+(t-c)*45;
\x09\x09}
\x09}
\x09printf("The money you need to pay is %d\n",m);
\x09
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯