Algorithm/BaekJoon[Java]67 백준 11721 ▶풀이방법1 import java.util.*; public class Main(){ public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.next(); for(int i = 0; i < str.length(); i++) { System.out.print(str.charAt(i)); if(i % 10 == 9) { //10번째 글자 출력하면 enter System.out.println(); } } } } 2022. 3. 16. 백준 11720 ▶풀이방법 import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); int sum = 0; String arr[] = sc.next().split(""); for(int i = 0; i < num; i++) { sum += Integer.parseInt(arr[i]); } System.out.println(sum); } } 2022. 3. 16. 백준 11718, 11719 ▶풀이방법 import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(sc.hasNext()) { System.out.println(sc.nextLine()); } } } ** 알아둬야 할것 ** - next() : Scanner클래스 메소드 중 공백 이전까지의 문자열 입력 받음. - nextInt() : Scanner클래스 메소드 중 정수 입력받음. - nextLine() : Enter치기 전까지 Scanner클래스 메소드 중 공백 포함 문자열 입력받음. 2022. 3. 16. 백준 11022 ▶풀이방법 import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); for(int i = 1; i 2022. 3. 16. 이전 1 ··· 12 13 14 15 16 17 다음