What is manipulator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is manipulator

12th Sep 2017, 8:43 PM
shveta patel
shveta patel - avatar
6 Answers
+ 1
thanks
12th Sep 2017, 8:45 PM
shveta patel
shveta patel - avatar
0
basic : << insertion >> extraction
12th Sep 2017, 8:46 PM
Mikhael Anthony
Mikhael Anthony - avatar
0
also tell me what is menu driven program and how can we write them
12th Sep 2017, 8:46 PM
shveta patel
shveta patel - avatar
0
Menu Driven : a choice or option that user can choose during running program / code. let's say a Calculator , or other which asking user to give input what to do instead of just value.
12th Sep 2017, 8:51 PM
Mikhael Anthony
Mikhael Anthony - avatar
0
tell me plz about coding of menu driven program
12th Sep 2017, 8:54 PM
shveta patel
shveta patel - avatar
0
I can't make a big one , just sample : float a,b; int opt; ...................... cout << "Number 1 : "; cin >> a; cout << endl; cout << "Number 2 : "; cin >> b; cout << endl; cout << "MENU" << endl; cout << "1: Add " << endl; cout << "2: Subtract" << endl; cout << "3: Multiply " << endl; cout << "4: Divide " << endl; out << "Enter your choice :"; cin >> opt; cout << endl; cout << endl; switch (opt){ case 1 : cout << ( a + b ); break; case 2 : cout << ( a - b ); break; case 3 : cout << ( a * b ); break; case 4 : cout << ( a / b ); break; default : cout << "Number not in Menu."; }
12th Sep 2017, 9:01 PM
Mikhael Anthony
Mikhael Anthony - avatar