Computer Science, asked by ram1962mandal, 3 months ago

to to get a number from the user and display it in C plus plus​

Answers

Answered by manavpaul27
0

Answer:

#include <iostream>

using namespace std;

int main()

{

int number;

cout << "Enter an integer: ";

cin >> number;

cout << "You entered " << number;

return 0;

}

Explanation:

Hope it gets Brainliest answer!

all the best

Similar questions