![[C++] 백준 3단계 - 8393번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbnwFv1%2Fbtr5dfkNGzq%2F37WpUW6W2pwRbnAqOoitf1%2Fimg.png)
문제설명 소스코드 #include using namespace std; int main() { int input; int sum = 0; cin >> input; for (int i = 1; i
![[C++] 백준 3단계 - 10950번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbuGxPr%2Fbtr5dAI0H1B%2FjgKyAwfWLLAO9FvZHeukB0%2Fimg.png)
문제설명 소스코드 #include using namespace std; int main() { int input; int A; int B; cin >> input; for (int i = 0; i > A >> B; cout
![[C++] 백준 3단계 - 2739번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fz8HV9%2Fbtr4yktpcBT%2FDijcYhFHc7ArsQCavKAXqk%2Fimg.png)
문제설명 소스코드 #include using namespace std; int main() { int input; cin >> input; for (int i = 1; i < 10; ++i) { cout
![[C++] 백준 2단계 - 2480번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbZlnW7%2Fbtr4wE66pLJ%2FkYGWuBnqUkvAW4u8pv5MZ0%2Fimg.png)
문제설명 소스코드 #include using namespace std; int main() { int a; int b; int c; int money; cin >> a >> b >> c; if ((a == b) && (a == c)) { money = 10000 + (a * 1000); cout
![[C++] 백준 2단계 - 2525번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fsbxhb%2Fbtr4uQmOmzp%2FZ4Keop32xPxBnocop8eFV0%2Fimg.png)
문제설명 소스코드 #include using namespace std; int main() { int H; int M; int input; cin >> H >> M >> input; if (M + input > 59) { H = H + ((M + input) / 60); M = (M + input) % 60; if (H > 23) H = H - 24; cout
![[C++] 백준 2단계 - 2884번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbLMXRW%2Fbtr4t8OO9a5%2FB9IKuzGeXNuZyBRrJM0pBK%2Fimg.png)
문제설명 본인은 맞다고 생각하는데 계속 틀렸다고 나온다면, 아래의 글을 읽는 것을 추천한다. https://www.acmicpc.net/board/view/100873 글 읽기 - ※ 알람 시계 - 지금 막 질문을 올리려는 당신을 위해 댓글을 작성하려면 로그인해야 합니다. www.acmicpc.net 소스코드 #include using namespace std; int main() { int H, M; cin >> H >> M; if (M - 45 < 0) { M = 60 - (45 - M); if (H - 1 < 0) { H = 23; cout
![[C++] 백준 2단계 - 14681번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fmn2ui%2Fbtr4uI3yjvE%2FXgftOmmTBkUzAVZTCBLLZ1%2Fimg.png)
문제설명 소스코드 #include using namespace std; int main() { int x, y; cin >> x >> y; if (x < 0 && y < 0) { cout 0) { cout
![[C++] 백준 1단계 - 11382번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbAWAYl%2Fbtr4yl6UqM9%2FGINgbRa7aLSLDnKa8TigaK%2Fimg.png)
문제 설명 소스코드 #include using namespace std; int main() { long long a; long long b; long long c; cin >> a >> b >> c; cout