System.out.print("*"); 줄바꿈 없이 계속해서 문자를 출력 System.out.println("*"); 출력 후에 줄바꿈을 추가
4) 코드
import java.util.Scanner;
public class Solution {
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("*");
}
System.out.println();
}
}
}
* repeat 메소드를 사용하는 코드
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int i=1; i<=n; i++){
System.out.println("*".repeat(i));
}
}
}
※ repeat 메소드
자바 11부터 도입된, String 클래스 뒤에 .reapeat(n)를 붙여, 해당 문자열을 n만큼 반복하여 생성합니다.