0
This given program is still running though I did not use curly braces,how?
#include <iostream> using namespace std; int main() { int mark = 90; if (mark < 50) cout << "You failed." << endl; else cout << "You passed." << endl; return 0; }
1 Réponse
#include <iostream> using namespace std; int main() { int mark = 90; if (mark < 50) cout << "You failed." << endl; else cout << "You passed." << endl; return 0; }