codeup-1025 정수 1개 입력받아 나누어 출력하기 Author: Slay Date: April 28, 2023 11:42:04 Category: codeup Qcodeup 1025 C code123456789101112131415#include <stdio.h>int main() { int a,b,c,d,e; scanf("%1d%1d%1d%1d%1d", &a, &b, &c, &d, &e); printf("[%d]\n",a*10000); printf("[%d]\n",b*1000); printf("[%d]\n",c*100); printf("[%d]\n",d*10); printf("[%d]\n",e); return 0;} Author: Slay Permalink: http://sean-baek.github.io/2023/04/28/codeup-1025/ License: Copyright (c) 2021 CC-BY-NC-4.0 LICENSE Slogan: Do you believe in DESTINY? Tag(s): back · home codeup-1026 시분초 입력받아 분만 출력하기 codeup-1024 정수 1개 입력받아 나누어 출력하기