처음으로
학원 소개
교육과정
진학&대회
게시판
코드게시판
교육자료
상담 문의
More
#include <stdio.h>
int main()
{
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
if(c<10)
printf("%d0%d00%d",a,b,c);
}
else if(a<100)
printf("%d0%d0%d",a,b,c);
else
printf("%d0%d%d",a,b,c);