C/Sum Of Three Digit Number.c
2024-05-13 11:09:46 -05:00

21 lines
412 B
C

#include <stdio.h>
#include <stdlib.h>
int main () {
int tdn; /* Three Digit Number */
printf("Enter a three digit number: ");
scanf("%d", &tdn);
int d1 = tdn / 100;
int d2 = (int)(tdn / 10) - d1 * 10;
int d3 = tdn - (d1 * 100 + d2 * 10);
printf("digit 1: %d\n", d1);
printf("digit 2: %d\n", d2);
printf("digit 3: %d\n", d3);
printf("The sum of the digits is %d\n", d1 + d2 + d3);
return 0;
}