공부기록/백준 115

[백준] 10807번 개수세기, 10871번 X보다 작은 수, 10818번 최소, 최대, 10699번 오늘 날짜

10699번 오늘 날짜 import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static void main(String[] args) { Date now = new Date(); String s = now.toString(); SimpleDateFormat formatType= new SimpleDateFormat("yyyy-MM-dd"); System.out.println(formatType.format(now)); } } 10818번 최소, 최대 import java.util.Scanner; public class Main { public static void main(String[] args) { Sc..

공부기록/백준 2023.02.12

[백준] 2525번: 오븐 시계 , 10757번: 큰 수 A+B

1. 2525번: 오븐 시계 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); int c = scanner.nextInt(); scanner.close(); int time = (a*60)+b+c; int hour = time/60; if(hour >= 24) { hour= hour-24; } System.out.println(hour + " "+ (time %60)); } } 2. 10757번: 큰 수 A+B import java..

공부기록/백준 2023.02.01

[백준] 10952번: A+B-5, 10950번: A+B-3, 11021번: A+B-7, 2884번 알람 시계

1. 10952번: A+B-5 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while(true) { int a = scanner.nextInt(); int b = scanner.nextInt(); if((a==0) &&(b ==0)) { break; } System.out.println(a+b); } } } 2. 10950번: A+B-3 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner =..

공부기록/백준 2023.01.31

[백준] 25304번 영수증, 10951번 A+B-4, 10870번 피보나치 수 5

10870번 피보나치 수 5 import java.util.Scanner; public class Main { public static int fibo(int n) { if(n == 0) { return 0; } if(n==1) { return 1; } else { return fibo(n-1) + fibo(n-2); } } public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); System.out.println(fibo(n)); scanner.close(); } } 25304번 영수증 대소문자 잘입력하자 ^^ (NO라고 썼다가 한 5분 날렸다..) import j..

공부기록/백준 2023.01.31