목록BaekJoon/02. if문 (5)
Hennie
QUESTION www.acmicpc.net/problem/2884 2884번: 알람 시계 상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지만, www.acmicpc.net ANSWER import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int h = scan.nextInt(); int m = scan.nextInt(); int real = m - 45; if(real < 0) { real = real ..
QUESTION www.acmicpc.net/problem/14681 14681번: 사분면 고르기 점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다. www.acmicpc.net ANSWER import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int x = scan.nextInt(); int y = scan.nextInt(); if(x > 0 && y > 0) { System.out.println(1); } else if(x 0) { System.out.println(2); } else if(..
QUESTION www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net 윤년이 뭔가 싶으시다면 ANSWER import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int year = scan.nextInt(); if(year%4 == 0 && year%100 != 0 || year%400 ..
QUESTION www.acmicpc.net/problem/9498 ANSWER import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int score = scan.nextInt(); if(score = 90) { System.out.println("A"); } else if(score = 80) { System.out.println("B"); } else if(score = 70) { System.out.println("C"); } else if(score = 60) { System.out.println("D"); } else { S..
아주 간단한 if문을 사용하는 문제! QUESTION www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net ANSWER import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); if(a > b) { System.out.println(">"); } else if(a < b) { System.out.println("