1330 두 수 비교하기
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
if (A > B) {
System.out.println(">");
} else if (A == B) {
System.out.println("==");
} else {
System.out.println("<");
}
}
}
2753 윤년
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
if (A % 4 == 0 && (A % 100 != 0 || A % 400 == 0)) {
System.out.println(1);
} else {
System.out.println(0);
}
}
}
2884 알람 시계
import java.util.Scanner;
public class Main {
public static void main(String[]args){
Scanner scanner = new Scanner(System.in);
int H = scanner.nextInt();
int M = scanner.nextInt();
if(M<45){
H--;
M = 60 - (45-M);
if(H<0){
H=23;
}
System.out.println(H+" "+M);
}else{
System.out.println(H+" "+(M-45));
}
}
}
'Algorithm(알고리즘) > Java' 카테고리의 다른 글
Java 백준 단계별 풀기 (기초 문법 정리) 문자열 (0) | 2020.12.26 |
---|---|
Java 백준 단계별 풀기 (기초 문법 정리) 함수 (0) | 2020.12.24 |
Java 백준 단계별 풀기 (기초 문법 정리) 배열 (0) | 2020.12.24 |
Java 백준 단계별 풀기 (기초 문법 정리) for문, while문 (0) | 2020.12.23 |
Java 백준 단계별 풀기 (기초 문법 정리) 입출력과 사칙연산 (0) | 2020.12.22 |