my/c/l6.c

12 lines
240 B
C
Raw Permalink Normal View History

2026-05-07 20:13:33 +03:00
#include <stdio.h>
int main() {
int pol;
2026-05-07 20:19:53 +03:00
printf("Enter 3 number ");
2026-05-07 20:13:33 +03:00
scanf("%d", &pol);
int x1 = pol % 10;
int x2 = (pol / 10) % 10;
int x3 = ((pol / 10) / 10) % 10;
int sum = x1+x2+x3;
printf("%d\n", sum);
}