백준

    [백준] 2884 알람 시계 - JAVA

    📌백준 2884 알람 시계 - 자바 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 totalMinute = 0; int resultHour = 0; int resultMinute = 0; //0시 0분 //0시 44분 //A시 44분 if(A==0 && B

    [백준] 10809 알파벳 찾기 - JAVA

    📌백준 10809 import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner scanner = new Scanner(System.in); int[] arr=new int[26]; for(int i=0;i