Sum of numbers | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Sum of numbers

I want to calculate the sum by taking numbers in separate lines until the number zero is entered. But my code only reads the first line and re-enters the loop, what is the reason? Ex: Input: 100 7 83 0 Output: 190 https://code.sololearn.com/ctzC1vr9nSnP/?ref=app

10th Oct 2020, 1:10 PM
Shakiba Majd
Shakiba Majd - avatar
7 Answers
+ 1
If you did not use scanf inside the while loop you can not repeat asking for user input .setting a = 1 whill ensure that user will enter any number until he enter 0 then condition a!=0 is false and then stop execution of while loop Shakiba Majd
10th Oct 2020, 7:10 PM
HBhZ_C
HBhZ_C - avatar
+ 2
Provide some intial value to a which is not 0 and ask for values inside while loop then, int main() { int sum=0,a=1; while (a!=0){ scanf("%d",&a); sum=sum+a; } printf("%d",sum); return 0; }
10th Oct 2020, 1:15 PM
Abhay
Abhay - avatar
+ 2
Shakiba Majd scanf only reads value until you don't start a new line by pressing enter key You can't do something like this 45 56 78 ,and expect one scanf to read all those multiple line values and add them but if you want to only use one scanf then you can use char array to ask for input like 45 56 78 and then process that string to add values but that is obviously what you don't want uninitialized variable(a) in this case has a value of 0 so the loop will never start , That's why I am initializing it with value other than 0
10th Oct 2020, 3:12 PM
Abhay
Abhay - avatar
+ 1
#include <stdio.h> int main() { int sum=0,a; do { scanf("%d",&a); //take in loop to repeatedly accept input.. sum=sum+a; }while (a!=0); //when input 0 then loop stops.. printf("%d",sum); //print final sum... return 0; }
10th Oct 2020, 2:05 PM
Jayakrishna 🇮🇳
+ 1
Abhay Thank you so much for your explanation 💐
10th Oct 2020, 5:51 PM
Shakiba Majd
Shakiba Majd - avatar
0
Abhay But what's the difference between scanf inside of loop and outside of loop? And why we write a=1?
10th Oct 2020, 1:23 PM
Shakiba Majd
Shakiba Majd - avatar
0
Abhay Yeah I got it, thanks again.
11th Oct 2020, 1:32 PM
Shakiba Majd
Shakiba Majd - avatar