Почему я получаю ожидаемое первичное выражение перед >= и как его исправить
if (score[0] >= gradeA){ cout << "student 0 score is " << score[0] << " and grade is A"; } if (score[0] <=gradeA & >= gradeB){ cout << "student 0 score is " << score[0] << " and grade is B"; } if (score[0] <=gradeB & >= gradeC){ cout << "student 0 score is " << score[0] << " and grade is C"; } if (score[0] <=gradeC & >= gradeD){ cout << "student 0 score is " << score[0] << " and grade is D"; } if (score[0] <= gradeD){ cout << "student 0 score is " << score[0] << " and grade is F"; }
Что я уже пробовал:
попробовал поставить && все равно получил то же самое сообщение