回 帖 发 新 帖 刷新版面

主题:求助,C语言问题

各位大哥哥,大姐姐,我刚学C语言,运行下列程序
为什么总是在case 1:rate=0.00315;break;报错
,Statement missing ; in function main。
我查查了,没缺;呀。

请赐教。
#include<stdio.h>
main()
{
float money,rate,total;
int year;

printf("Please input money:\n");
scanf("%f",&money);

printf("Please input year:\n");
scanf("%d",&year);

if(year<1)
  rate=0.0;
else if(year>8)
  rate=0.00420;
else
 {swtich(year)
   {case 1:rate=0.00315;break;
    case 2:rate=0.00330;break;
    case 3:
    case 4:rate=0.00345;break;
    case 5:
    case 6:
    case 7:rate=0.00375;break;
    case 8:rate=0.00420;break;
   }
 }
 total=money+money*rate*12*year;
 printf("Total=%f",total);

 getch();

}

回复列表 (共1个回复)

沙发

lz应学会调试纠错啊(如果不能大脑跟踪执行)
switch明显拼写错误了  用getch()建议加上头文件conio.h

我来回复

您尚未登录,请登录后再回复。点此登录或注册