Write a program that receives a number and the second basis print it out? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a program that receives a number and the second basis print it out?

please write it with c ++

9th Nov 2016, 12:56 PM
ali Bahrain
ali Bahrain - avatar
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; }
9th Nov 2016, 2:20 PM
Rahul Chittimalla
Rahul Chittimalla - avatar