0
Compare the variables and print "what a Mid-Semester package" on the screen
#include <iostream> using namespace std; int main(){ int x =15; int y =35; if (x>y) cout << "Indeed this is c++ " << endl; } else{ cout <<"What a mid semester package " << endl; } What's Wrong With The code👆 I'm Getting An Error
1 Resposta
0
Missing curling brace after if statement