Tenemos la mejor solución que descubrimos en línea. Deseamos que te resulte de ayuda y si puedes aportar algo que nos pueda ayudar a mejorar siéntete libre de hacerlo..
Ejemplo 1: suma de dígitos de un número en c
//program to find the sum of digits:#include intmain()int num,sum=0,r,temp;printf("Enter the number:n ");//taking input from the userscanf("%d",&num);
temp=num;//assigning num to temporary variablewhile(temp!=0)
r=temp%10;
sum=sum+r;
temp=temp/10;printf("nGiven number = %d",num);printf("nSum of the digits = %d",sum);//code By dungriyal
Ejemplo 2: cómo contar dígitos y sumar dígitos en C
Enter the number
300
Given number =300
Sum of the digits 300=3
Enter the number
16789
Given number =16789
Sum of the digits 16789=31
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)