Answer to Question #340189 in C for Shiki

Question #340189

7. Gathering Negativity

by CodeChum Admin

I’ve been too positive in life, but I figured that it really isn’t good to always be positive since life has to be balanced, don’t you think so?


That aside, let’s make a program that asks for random integers, positive or negative, and sums up all the negative integers only! Well, the loop stops when the inputted value is 0, though.


And don’t forget to print the sum of negative integers afterwards! Thanks!

Input


1. A series of integers

Output


Multiple lines containing message prompts to input integers.

The last line contain the sum of the negative integers.



Enter·n:·1
Enter·n:·3
Enter·n:·-1
Enter·n:·-2
Enter·n:·-4
Enter·n:·5
Enter·n:·-1
Enter·n:·-2
Enter·n:·0
Sum·of·negatives·=·-10
1
Expert's answer
2022-05-14T16:42:06-0400
#include <stdio.h>


int main()
{
	int n, sum = 0;
	for (;;)
	{
		printf("Enter n: ");
		scanf("%d", &n);
		if (n < 0)
			sum += n;
		if (n == 0)
			break;
	}
	printf("Sum of negatives = %d \n", sum);

	return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS