-
Lenguaje
C
-
Descripción
Determine la suma de las cifras de un número entero positivo de 4 cifras.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int numero_entero, suma;
printf ("Ingresa el valor de numero entero: ");
scanf ("%d", &numero_entero);
(void) getchar ();
suma=(numero_entero%10000-numero_entero%1000)/1000+(numero_entero%1000-numero_entero%100)/100+(numero_entero%100-numero_entero%10)/10+numero_entero%10;
printf ("Valor de suma: %d\n", suma);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int numero_entero, suma;
printf ("Ingresa el valor de numero entero: ");
scanf ("%d", &numero_entero);
(void) getchar ();
suma=(numero_entero%10000-numero_entero%1000)/1000+(numero_entero%1000-numero_entero%100)/100+(numero_entero%100-numero_entero%10)/10+numero_entero%10;
printf ("Valor de suma: %d\n", suma);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}