float getTestScore();
float score;
cout<<"Please enter a test score"<<endl;
cin>>score;
return score;
我正在制作一个算法,它需要三个测试分数并计算平均值。我正在使用函数,我的函数的这部分得到了测试分数。我需要输入验证,因为分数需要在0到100之间(包括0和100)。我尝试了一个do-while循环
do { /* ... */ } while ((score>=0) && (score<=100))
但这导致无限循环,反复询问得分。我需要的是0和0之间的三个分数。 100。
答案 0 :(得分:0)