Java49 [백준] 2446번: 별 찍기 - 9 -자바 https://www.acmicpc.net/problem/2446 2446번: 별 찍기 - 9 첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다. www.acmicpc.net [문제] [코드] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i = 0; i < N; i++) { for(int j = 0; j < i; j++) System.out.print(" "); for(int k = i; k < N*2-(i+1); k++) System.out.print("*"); Sys.. 2022. 4. 2. [백준] 2445번: 별 찍기 - 8 - 자바 https://www.acmicpc.net/problem/2445 2445번: 별 찍기 - 8 첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다. www.acmicpc.net [문제] [코드] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i = 0; i < N; i++) { for(int j=0; j 2022. 4. 1. [백준] 별 찍기 - 7- 자바 https://www.acmicpc.net/problem/2444 2444번: 별 찍기 - 7 첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다. www.acmicpc.net [문제] [코드] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i = 1; i i; j--) System.out.print(" "); for(int k = 0; k < i*2-1; k++) System.out.print("*"); System.out.println(); } for(int i = N;.. 2022. 3. 29. [백준] 2443번 별 찍기 - 6- 자바 https://www.acmicpc.net/problem/2443 2443번: 별 찍기 - 6 첫째 줄에는 별 2×N-1개, 둘째 줄에는 별 2×N-3개, ..., N번째 줄에는 별 1개를 찍는 문제 별은 가운데를 기준으로 대칭이어야 한다. www.acmicpc.net [문제] [코드] import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i=1; i 2022. 3. 26. 이전 1 2 3 4 5 6 7 8 ··· 13 다음