gpt4 book ai didi

c++ - 为什么条件中的逗号可以在 C++ 中运行

转载 作者:行者123 更新时间:2023-11-28 01:40:53 25 4
gpt4 key购买 nike

<分区>

{   
int a,b,c,d,e;
float percentage;

cout<<"marks= ";
cin>>a;
cin>>b;
cin>>c;
cin>>d;
cin>>e;

percentage= (a+b+c+d+e)/5;
cout<<"Percentage= "<<percentage<<endl;

if (percentage<40)
cout<<"fail";

else if (percentage>=40,percentage<=49)
cout<<"third division";

else if (percentage>=50,percentage<=59)
cout<<"second division";

else if (percentage>=60)
cout<<"first division";

}

当我把这个提交给我的讲师时,他说在条件中使用逗号在理论上是错误的,应该是 &&。但是,我已经成功运行了这个程序。谁能给我解释一下?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com