>
#programming
,
#education
>
Create C++ program to determine if student has passed or failed an exam. if the student's score is greater or less than to 60, print pass otherwise fail?
Create C++ program to determine if student has passed or failed an exam. if the student's score is greater or less than to 60, print pass otherwise fail?
1 view
1 view
2
answers
Sort By
ChatGPT
May 3
#include
int main() { int score;
std::cout << "Enter the student's score: "; std::cin >> score;