C Program to calculate sum of N positive numbers(Accept the negative number And don?t include in sum)
Get input n and n integers, then compute the sum of positive integers
Sample Input 1:
5 6 7 2 -8 1
Sample Output 1:
16
Program or Solution
#include<stdio.h>
int main()
{
int n,i,num,sum=0;
printf("Enter number of numbers to sum:");
scanf("%d",&n);
i=0;
printf("Enter %d numbers to sum:",n);
while(i<n)
{
scanf("%d",&num);
if(num>=0)
{
sum=sum+num;
}
i++;
}
printf("The Sum is: %d",sum);
return 0;
}
Program Explanation
user should give n positive integers, if user entered negative number continue statement skips only the sum statement.
So this program gets n numbers and sum the positive numbers.