#include<iostream> using namespace std; int main () { int a,b; int sum=a+b; cout<<"enter a number"; cin>>a; cout<<"enter another number"; cin b; cout<<" sum is"<<sum<<endl; return 0; } | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 1

#include<iostream> using namespace std; int main () { int a,b; int sum=a+b; cout<<"enter a number"; cin>>a; cout<<"enter another number"; cin b; cout<<" sum is"<<sum<<endl; return 0; }

I have used there respective codes but I didn't receive sum as an addition of two numbers instead the ans was a vague number. what is wrong with the above code?

20th Jun 2016, 7:19 AM
Amrisha singh bhadoria
Amrisha singh bhadoria - avatar
17 Antworten
+ 2
put cin>>b;
21st Jun 2016, 4:21 AM
Tushar Chetan
Tushar Chetan - avatar
+ 1
while programming you need to think all the steps, for example using the same code as you, you wanted to do an addition, but you need to think, what I need to do an addition?. first you need 2 values, but you need to save them, so you declare 2 variables A and B, then you need to put some values inside A and B, so after knowing values you can do the addition and then you do A+B and save them in another variable for so you can print the result.
20th Jun 2016, 7:56 AM
Victor
Victor - avatar
0
you need to put to sum receive a+b after a and b receive an value
20th Jun 2016, 7:35 AM
Victor
Victor - avatar
0
ya you are right but I don't understand why ?
20th Jun 2016, 7:40 AM
Amrisha singh bhadoria
Amrisha singh bhadoria - avatar
0
if you cout<<sum<<endl; before cout<<“enter a number”; you would get the addition but you didn't enter any number right? when a, b changes sum does not change sum is just a memory section to save a number ,not a fuction of a+b so you get the number before you enter a,b a,b is something else when you add them
20th Jun 2016, 7:52 AM
藝齡胡
藝齡胡 - avatar
0
okey I get it thank very much
20th Jun 2016, 8:06 AM
Amrisha singh bhadoria
Amrisha singh bhadoria - avatar
0
put cin >> b
20th Jun 2016, 2:24 PM
Rashad
Rashad - avatar
0
here what u have done is like u want to show the ouput of adding up two numbers but what u have done is shown the sum of a & b before assigning a value to the variables here the garbage values from stack memory will automatically be assigned to variables a and b cause u used undefined memories Thus we u want this code to run correctly first assign the desired values to a and b, and then add them up, store in "sum" then display!! hope u got want i meant..
20th Jun 2016, 2:32 PM
Akshay Kakoriya
Akshay Kakoriya - avatar
0
#include<iostream> using namespace std; int main() { int a,b,sum; cout<<"enter value for a="<<endl; cin>>a; cout<<"enter value for b="<<endl; cin>>b; sum=a+b; cout<<"sum="<<sum; return 0; } //this is the right code
20th Jun 2016, 6:36 PM
Aishwarya
0
cin>>b;
23rd Jun 2016, 4:13 PM
Meet darji
Meet darji - avatar
0
even though u correct the cin>> u will get the garbage value because u have not stored any value in a and b before adding them .
24th Jun 2016, 9:26 AM
Yogesh Gaikwad
0
Or if you want a short way😀😁: #include<iostream> using namespace std; int main() { int a,b; cout<<"enter value for a="<<endl; cin>>a; cout<<"enter value for b="<<endl; cin>>b; cout<<"sum="<<a+b; return 0; }
24th Jun 2016, 12:54 PM
Daisuke
Daisuke - avatar
0
you are evaluating sum before a and b are initialized
1st Jul 2016, 8:25 AM
Midhun Mathew
0
Fix cin>>b and declare sun befor return
1st Jul 2016, 4:24 PM
Sagar Thorat
Sagar Thorat - avatar
0
cin>>b; U have be attention
1st Jul 2016, 6:52 PM
Badar Adam
Badar Adam - avatar
0
#include<iostream> using namespace std; int main() { int a,b,sum; cout<<"enter value for a="<<endl; cin>>a; cout<<"enter value for b="<<endl; cin>>b; sum=a+b; cout<<"sum="<<sum; return 0; }
20th Mar 2019, 10:58 PM
Tamba Georges Millimouno
Tamba Georges Millimouno - avatar
0
put: cout<<"some of code"; intput: cin>>_variable_;
30th Jun 2023, 8:13 AM
Mayur Patil
Mayur Patil - avatar