Notice
Recent Posts
Recent Comments
Link
목록문제 (1)
완숙의 블로그
중간 예제
Problem 1 #include int main() { int x = 0; int x1, x2, x3, x4, x5, x6, x7, x8; int a, b, c, d, e, f, g, h, i; printf("정수를 입력하시오 : "); scanf("%d", &x); a = x / 100000000; x1 = x % 100000000; b = x1 / 10000000; x2 = x1 % 10000000; c = x2 / 1000000; x3 = x2 % 1000000; d = x3 / 100000; x4 = x3 % 100000; e = x4 / 10000; x5 = x4 % 10000; f = x5 / 1000; x6 = x5 % 1000; g = x6 / 100; x7 = x6 % 100; h = ..
Programing Language/C
2019. 1. 2. 12:46