Input numbers from the user and find the sum of all those input numbers until the user inputs zero. In other means, the loop should end when the user enters 0. Finally, display the sum of all those numbers entered by the user
#include <stdio.h>
int main() {
int sum = 0;
int num;
while (1) {
printf("Enter an integer number (zero to terminate) ");
scanf("%d", & num);
if (num == 0) {
break;
}
sum += num;
}
printf("The sum of entered numbers is %d\n", sum);
return 0;
}
Comments
Leave a comment