- 1
Help?
Write a C++ statement that displays the message "Average" on the screen, followed by the contents of the Average variable. The statement should then advance the cursor to the next line on the screen. Anyone know how to do this one?
1 ответ
+ 14
🤔
int average = 6;
std::cout << "Average : " << average << std::endl;