연산자 - 연산자의 활용 예제1
2018. 7. 5. 20:13ㆍalgorithm/dimigo.goorm.io
Practice Contents
태어난 연도를 입력받아 나이를 출력하는 프로그램을 작성하시오.
⋇ Please keep the input/output format well.
#include <stdio.h>
int main() {
int year, age;
scanf("%d", &year);
printf("%d", 2019-year);
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 |
연산자 - 연산자의 활용 예제2 (953) | 2018.07.05 |