Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 재귀
- 파이썬
- github
- dynamic
- w3school
- DP
- 문제풀이
- Unity
- loop
- c++
- String
- Basic
- 백준
- Class
- 시작해요 언리얼 2022
- dfs
- Material
- Algorithm
- 기초
- Tutorial
- parameter
- W3Schools
- guide
- Unreal Engine 5
- UE5
- C#
- python
- Programming
- 프로그래밍
- 오류
Archives
- Today
- Total
행복한 개구리
(Python/C#/C++) 백준 18108번 - 1998년생인 내가 태국에서는 2541년생?! 본문
Algorithm/BaekJoon
(Python/C#/C++) 백준 18108번 - 1998년생인 내가 태국에서는 2541년생?!
HappyFrog 2022. 7. 11. 14:00

Python
year = int(input())
print(year - 543)
C#
int year = int.Parse(Console.ReadLine());
Console.Write(year - 543);
C++
#include <iostream>
using namespace std;
int main() {
int year;
cin >> year;
cout << year - 543;
}'Algorithm > BaekJoon' 카테고리의 다른 글
| (Python/C#/C++) 백준 2588번 - 곱셈 (0) | 2022.07.11 |
|---|---|
| (Python/C#/C++) 백준 10430번 - 나머지 (0) | 2022.07.11 |
| (Python/C#/C++) 백준 10926번 - ??! (0) | 2022.07.11 |
| (Python/C#/C++) 백준 10869번 - 사칙연산 (0) | 2022.07.08 |
| (C++/C#/Python) 백준 1008번 - A/B (0) | 2022.07.08 |