like512 2022-03-28 02:47 采纳率: 100%
浏览 94
已结题

这个 illegal else without matching if 怎么解决

#include<stdio.h>
void main()
{
int date , price, x;
printf("Enter the date returning the books \n");
scanf("%d",&date);

if(date <= 5)
    price=50;
    printf("The price is %d",price);    
else if((date > 5) && (date <= 10))
    x=date-5;
    price=50+x;
    printf("The price is %d \n",price);
else if((date >10) && (date <= 30))
    x=date-10;
    price=55+5*x;
    printf("The price is %d \n",price);
else
    printf("You'd lost the member qualification");

}

  • 写回答

3条回答 默认 最新

  • 关注

    前面if下面有多条语句,但是没加大括号,后面也一样

    img


    修改后:

    img

    #include<stdio.h>
    int main()
    {
    int date , price, x;
    printf("Enter the date returning the books \n");
    scanf("%d",&date);
    
    if(date <= 5){
        price=50;
        printf("The price is %d",price);}
    else if((date > 5) && (date <= 10)){
        x=date-5;
        price=50+x;
        printf("The price is %d \n",price);}
    else if((date >10) && (date <= 30)){
        x=date-10;
        price=55+5*x;
        printf("The price is %d \n",price);}
    else
        printf("You'd lost the member qualification");
    }
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

    如有帮助,请点击我评论上方【采纳该答案】按钮支持一下,谢谢!以后有什么问题可以互相交流。

    回复
查看更多回答(2条)
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 4月4日
  • 已采纳回答 3月28日
  • 创建了问题 3月28日

悬赏问题

  • ¥15 unity安卓打包出现问题
  • ¥15 爱快路由器端口更改错误导致无法访问
  • ¥20 安装catkin时遇到了如下问题请问该如何解决呢
  • ¥15 VAE模型如何输出结果
  • ¥15 编译python程序为pyd文件报错:{"source code string cannot contain null bytes"
  • ¥20 关于#r语言#的问题:广义加行模型拟合曲线后如何求拐点
  • ¥15 fluent设置了自动保存后,会有几个时间点不保存
  • ¥20 激光照射到四象线探测器,通过液晶屏显示X、Y值
  • ¥50 数据库开发问题求解答
  • ¥15 安装anaconda时报错
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部