백준(2741번 찍기)풀이 C++ www.acmicpc.net/problem/2741 2741번: N 찍기 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. www.acmicpc.net #include using namespace std; int main() { int n; cin >> n; for (int i = 1;i BEAKJOON 2020.12.02
백준(15552번 빠른 A+B)풀이 C++ www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net #include using namespace std; int main() { cin.tie(NULL); std::ios_base::sync_with_stdio(false); int t, a, b; cin >> t; for (int i = 0;i > a >> b; cout BEAKJOON 2020.12.02
백준(15552번 빠른 A+B)풀이 C++ www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net #include using namespace std; int main() { cin.tie(NULL); std::ios_base::sync_with_stdio(false); int t, a, b; cin >> t; for (int i = 0;i > a >> b; cout BEAKJOON 2020.12.02
백준(8393번 합)풀이 C++ www.acmicpc.net/problem/8393 8393번: 합 n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오. www.acmicpc.net #include using namespace std; int main() { int n, sum=0; cin >> n; for (int i = 1;i BEAKJOON 2020.12.02
백준(10950번 A+B - 3)풀이 C++ www.acmicpc.net/problem/10950 10950번: A+B - 3 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net #include using namespace std; int main() { int t, a, b; cin >> t; for (int i = 0;i > a >> b; cout BEAKJOON 2020.12.02
백준(2739번 구구단)풀이 C++ www.acmicpc.net/problem/2739 2739번: 구구단 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. www.acmicpc.net #include using namespace std; int main() { int n; cin >> n; for (int i = 1;i BEAKJOON 2020.12.02
백준(2884번 알람 시계)풀이 C++ www.acmicpc.net/problem/2884 2884번: 알람 시계 상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지만, www.acmicpc.net #include using namespace std; int main() { int H, M, clock; int HH, MM; cin >> H >> M; if (M >= 45) { M -= 45; } else { if (H == 0) H = 23; else { H -= 1; } M += 15; } cout BEAKJOON 2020.12.02
백준(14681번 사분면 고르기)풀이 C++ www.acmicpc.net/problem/14681 14681번: 사분면 고르기 점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다. www.acmicpc.net #include using namespace std; int main() { int x, y; cin >> x >> y; if (x > 0 && y > 0) cout 0) cout BEAKJOON 2020.12.02
백준(2753번 윤년)풀이 C++ www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net #include using namespace std; int main() { int year; cin >> year; if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) cout BEAKJOON 2020.12.02
백준(9498번 시험 성적)풀이 C++ www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net #include using namespace std; int main() { int score; cin >> score; if (score >= 90) cout = 80) cout = 70) cout = 60) cout BEAKJOON 2020.12.01