+ 2
Please type in a code that declares two variables of type int and prints their sum to the screen.
int x = 4; y = 7; int sum = x y; cout << "sum equals to " << << endl;
1 Respuesta
- 5
FILL IN THE BLANKS:
int x = 4;
__ y = 7;
int sum = x _ y;
cout << "sum equals to" << ___ << endl ;
Najmul Ahmed Your turn, finish the above quiz.