Answer to Question #69150 in C++ for Angela Joves
Fill in the blanks to compare the variables and print "hi there" to the screen:
int x = 5;
int y = 3;
_____ (x > ______) {
cout << "hi there";
}
1
2017-07-04T11:45:07-0400
int x = 5;
int y = 3;
if(x >y)
{
cout << "hi there";
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment