연산자 - 연산자의 활용 예제2
2018. 7. 5. 20:15ㆍalgorithm/dimigo.goorm.io
Practice Contents
입력받은 두 자리 정수의 10의 자리 숫자와 1의 자리 숫자를 출력하는 프로그램을 작성하시오.
⋇ Please keep the input/output format well.
#include <stdio.h>
int main() {
int a;
scanf("%d", &a);
printf("십의자리 : %d\n", a/10);
printf("일의자리 : %d", a%10);
return 0;
}
'algorithm > dimigo.goorm.io' 카테고리의 다른 글
연산자 - 연산자의 활용 예제6 (955) | 2018.07.05 |
---|---|
연산자 - 연산자의 활용 예제5 (941) | 2018.07.05 |
연산자 - 연산자의 활용 예제4 (939) | 2018.07.05 |
연산자 - 연산자의 활용 예제3 (937) | 2018.07.05 |
연산자 - 연산자의 활용 예제1 (968) | 2018.07.05 |