Muxinfelix 2021-07-13 00:03 采纳率: 50%
浏览 22
已采纳

改程序中哪句是多重定义?

还有其余的逻辑错误和语法错有有哪些.求解
#include

using namespace std;

void main()
{
int count = 0, count1 = 0, count2 = 0, count3 = 0;

 mark = -9;

 while (mark != -9)
 {
     cout << "insert marks of students in your class, enter -9 to stop entering"; 

     cin >> mark;

     count++;

     if (mark >= 0 && mark <= 60);
        count1 = count1 + 1;
     else if (mark >= 61 && mark <= 70);
        count2 = count2 + 1;
     else if (mark >= 71 && mark <= 100);
        count3 = count3 + 1;
  }
  cout <<"Report of MTS3013 course" << endl;
  cout <<"Mark" << count << endl << endl;
  cout << "0-60" << "\t\t\t\t" << count1 << endl;
  cout << "61-70" << "\t\t\t\t" << count2 << endl;
  cout << "71-100" << "\t\t\t\t" << count3 << endl<< endl << endl;
  cout << "End of program";

}

  • 写回答

3条回答 默认 最新

  • CSDN专家-link 2021-07-13 05:28
    关注

    建议如下更改,否则count的值是不对的,把-9也算进去了

    #include <iostream>
    using namespace std;
    void main()
    {
        int count = 0, count1 = 0, count2 = 0, count3 = 0;
        int mark=0;
     while (1)
     {
         cout << "insert marks of students in your class, enter -9 to stop entering\n"; 
         cin >> mark;
         if(mark == -9)
             break;
         count++;
         if (mark >= 0 && mark <= 60)
            count1 = count1 + 1;
         else if (mark >= 61 && mark <= 70)//;
            count2 = count2 + 1;
         else if (mark >= 71 && mark <= 100)//;
            count3 = count3 + 1;
      }
      cout <<"Report of MTS3013 course" << endl;
      cout <<"Mark " << count << endl << endl;
      cout << "0-60" << "\t\t\t\t" << count1 << endl;
      cout << "61-70" << "\t\t\t\t" << count2 << endl;
      cout << "71-100" << "\t\t\t\t" << count3 << endl<< endl << endl;
      cout << "End of program";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 已采纳回答 7月13日
  • 创建了问题 7月13日

悬赏问题

  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器
  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题
  • ¥15 开放世界如何写线性关卡的用例(类似原神)
  • ¥15 关于并联谐振电磁感应加热
  • ¥60 请查询全国几个煤炭大省近十年的煤炭铁路及公路的货物周转量
  • ¥15 请帮我看看我这道c语言题到底漏了哪种情况吧!
  • ¥66 如何制作支付宝扫码跳转到发红包界面
  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题