728x90 반응형 분류 전체보기281 [백준]2557_A+B - 3 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int T = Integer.p.. 2022. 2. 14. [백준]2558_A+B - 2 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int A=Integer.parseInt(br.readLine()); int B=Integer.parseInt(br.readLine()); System.out.pri.. 2022. 2. 14. [백준]1000_A+B 1 2 3 4 5 6 7 8 9 10 11 12 13 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(); System.out.println(A+B); } } Colored by Color Scripter cs 2022. 2. 14. [백준]2557_Hello World 1 2 3 4 5 6 public class Main { public static void main(String[] args) { System.out.println("Hello World!"); } } Colored by Color Scripter cs 2022. 2. 14. 부분집합(SubSet) 보호되어 있는 글 입니다. 2022. 2. 13. 조합(Combination) 보호되어 있는 글 입니다. 2022. 2. 13. 5607. [Professional] 조합.D3(제한시간초과) 보호되어 있는 글 입니다. 2022. 2. 13. 6484. 조합의 약수의 개수.D5(제한시간초과) 보호되어 있는 글 입니다. 2022. 2. 13. 순열(Permutation) 보호되어 있는 글 입니다. 2022. 2. 12. 이전 1 ··· 14 15 16 17 18 19 20 ··· 32 다음 728x90 반응형