Exercise 7.2 : Taking Inputs (User Input) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Exercise 7.2 : Taking Inputs (User Input)

“Write a program that takes two numbers as input, assigns those values to the provided a and b variables, then outputs their sum.” I’m lost. I’ve tried numerous times to code it correctly. Int a = 5; Int b = 20; Int sum = a + b; Cout << “Find the sum of two numbers.” ; Cin >> sum >> endl;

19th Feb 2021, 12:38 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
21 Answers
+ 10
Hey, Tahiti 🥳🥳 Congratulations ! 🎊 You solved it on your own. Great job 👏 Just saw your posts, wasn't around to help you today.
20th Feb 2021, 1:09 AM
Shivani 📚✍
Shivani 📚✍ - avatar
+ 4
You have to take input for a and b. Whenever you assign the value to variable, you fail to take inputs. We learned this in [input] lesson. 👇 // To enable the user to input a value, use cin in combination with the extraction operator (>>). Try once again. Understand the given description in problem. Re-read / refer again that's in lesson. Let us know if you were able to solve. Note: the first letter should not be in capital letter for [cout] & [cin]
19th Feb 2021, 12:49 AM
Shivani 📚✍
Shivani 📚✍ - avatar
+ 4
Tahiti "lvalue" 👇 An lvalue (locator value) represents an object that occupies some identifiable location in memory (i.e. has an address). Another value is "rvalue"👇 rvalues are defined by exclusion. Every expression is either an lvalue or an rvalue, so, an rvalue is an expression that does not represent an object occupying some identifiable location in memory. You can refer to the link shared below for understanding better 👇 https://www.internalpointers.com/post/understanding-meaning-lvalues-and-rvalues-c hey, little more help for you for tagging the person [ use @ before name, so they will get notified when you asking for help ]
20th Feb 2021, 2:31 AM
Shivani 📚✍
Shivani 📚✍ - avatar
+ 3
Tahiti , you have to calculate a & b How you can solve if you are already assigning values of 5 & 20?
19th Feb 2021, 12:54 AM
Shivani 📚✍
Shivani 📚✍ - avatar
+ 2
Thank you very much, Arsenic ! Maybe I’m making this more difficult than it really is. I tried again, and I get “Line 12: expected initializer before ‘>>’ token. I’ll try that link.
19th Feb 2021, 1:33 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
+ 2
Tahiti , I am learner & keep learning. Didn't mastered languages. Because, programming languages are always updating and have more functionality. So, just keep learning.
20th Feb 2021, 12:59 PM
Shivani 📚✍
Shivani 📚✍ - avatar
+ 1
Tahiti check this lesson to learn how to get user input using cin 👇 https://www.sololearn.com/learning/1607/
19th Feb 2021, 12:55 AM
Arsenic
Arsenic - avatar
+ 1
Thank you, Shivani! Maybe you can still help. I really didn’t understand the direction (error message) that said: line 11 lvalue required as left operand of assignment What is “lvalue” ?
20th Feb 2021, 1:29 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
+ 1
Shivani 📚✍ Yes, I certainly will do that!
20th Feb 2021, 6:07 PM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
+ 1
That's it: #include <iostream> using namespace std; int main() { int a; int b; // your code goes here cin >> a; cin >> b; cout << a + b; return 0; }
28th Jul 2021, 7:11 PM
Octavian Malinici-Pruteanu
Octavian Malinici-Pruteanu - avatar
+ 1
Solution: #include <iostream> using namespace std; int main(){ int a; int b; a=1; b=4; cin>>a; cin>>b; cout<<a+b; return 0; }
21st Oct 2021, 5:58 AM
Rugema Didier
Rugema Didier - avatar
+ 1
#include <iostream> using namespace std; int main() { int a; int b; // your code goes here cin>>a; cin>>b; cout<<a+b; return 0; }
6th Nov 2022, 10:20 AM
Be Rain
Be Rain - avatar
0
Do it according to what question says. 1. Take input (use cin) and put the value in variable "a" 2. Take another input and put the value in variable "b" 3. Calculate "a+b" 4. Output the sum on the screen (use cout)
19th Feb 2021, 12:46 AM
Arsenic
Arsenic - avatar
0
cin >> 5; cin>> 20; cout << “25””>>; Correct?
19th Feb 2021, 12:51 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
0
I will get this right, I don’t care how many tries it takes. Please be mindful that I’m brand new to C++ this week. Here’s what I have now: 7 cout << “Enter a number. \n” ; 8 cin >> a; 9 cout << “Enter another number. \n”; 10 cin >> b; 11 a = 3 << b = 5; 12 int sum; 13 sum = a + b; 14 cout << “Sum is: “ << sum; line 11 lvalue required as left operand of assignment cout << “Help!!!! 😭 “ ;
20th Feb 2021, 12:09 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
0
And also, thank you very much for your help, Shivani! And thank you, Mr. Imperfect!
20th Feb 2021, 12:11 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
0
I finally solved it!!! I couldn’t believe it. 🥳
20th Feb 2021, 12:39 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
0
Thanks a million, Shivani 📚✍ ! And WOW, all those languages you’ve mastered! Incredible! 🏆
20th Feb 2021, 10:53 AM
Tahiti🌍Castillo
Tahiti🌍Castillo - avatar
0
Write a program that takes two numbers as input, assigns those values to the provided a and b variables, then outputs their sum. I have tried numerouse attempts but nothing is going right.
10th Jul 2021, 2:20 PM
Mahki Wimbish
Mahki Wimbish - avatar
0
#include <iostream> using namespace std; int main () { int a; int b; cin>>a; cin>>b; int sum=a+b; cout<<sum<<endl; return 0; } The above code will give you correct output 😇
14th Nov 2021, 6:01 AM
Komal Bramhaji Jondhale
Komal Bramhaji Jondhale - avatar