목록분류 전체보기 (639)
충분히 쌓여가는
https://www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net 문제풀이 import java.util.Scanner; public class _2753_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int year = sc.nextInt(); sc.close(); if (year % 4 == 0 && year % 100 != 0 || year % 40..
https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net 문제풀이 import java.util.Scanner; public class _9498_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int score = sc.nextInt(); if (score >= 90) System.out.println('A'); else if (score >= 80) System.out.print..
https://www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net 문제풀이 if 조건문의 기초 문제 방법 1. import java.util.Scanner; public class _1330_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); sc.close(); if (A > B) System.out.println(">"); else if (B > A) System.out.println("" : ((..
https://www.acmicpc.net/problem/2588 2588번: 곱셈 첫째 줄부터 넷째 줄까지 차례대로 (3), (4), (5), (6)에 들어갈 값을 출력한다. www.acmicpc.net 문제풀이 // Scanner + 수학연산 // 나머지와 나눗셈 연산을 통해 각 자릿수를 구하는 방법 import java.util.Scanner; public class _2588_1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int A = sc.nextInt(); int B = sc.nextInt(); sc.close(); System.out.println(A*(B%10)); System.out.pri..