0
#include <iostream> using namespace std; int main() { int mark = 100; if (mark >= 50) { cout << "passed." << endl; if (mark == 100) { cout <<"excellent" << endl; } } else { cout << "You failed." << endl; } return 0; }
17th Jul 2016, 6:26 AM
Karan Luther
Karan Luther - avatar