/* Using if statements */ #include using namespace std; int main() { int grade; cout << "Enter a grade and I will tell you if you passed: "; cin >> grade; if (grade > 60) cout << "Passed" << endl; return 0; }