0
Write a program that receives a number and the second basis print it out?
please write it with c ++
1 Answer
0
Are you looking for a program to accept an input and print it?
#include <iostream>
using namespace std;
int main() {
int x;
cin>>x;
cout<<"The number is :"<<x;
return 0;
}