Curso-lenguaje-C/curso-juantxi/Ejercicios/0208numHasta0ySuma.c

16 lines
280 B
C

#include <stdio.h>
/*
PROGRAMA QUE LEE NÚMEROS HASTA LLEGAR A UN CERO
Y LUEGO MUESTRA LA SUMA DE TODOS LOS NÚMEROS LEÍDOS
*/
int main(){
int x;
int suma=0;
do {
scanf("%d",&x);
suma+=x;
} while ( x != 0);
printf("La suma es: %d", suma);
}