728x90
📍 스탬프 찍기
입력받은 N만큼 StringBuilder에 추가해 출력한다.
for(int i=0; i<N; i++) {
sb.append("#");
} System.out.println(sb);
✨ 전체코드 ✨
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
StringBuilder sb = new StringBuilder();
int N = sc.nextInt();
for(int i=0; i<N; i++) {
sb.append("#");
} System.out.println(sb);
}
}
🌀 성능
- 메모리 : 28,672 KB
- 실행시간 : 106 ms
'Algorithm > SWEA' 카테고리의 다른 글
[JAVA | SWEA] #2047 신문 헤드라인 📰 (0) | 2023.12.05 |
---|---|
[JAVA | SWEA] #2056 연월일 달력 📆 (2) | 2023.12.05 |
[JAVA | SWEA] #1545 거꾸로 출력해 보아요 🙃 (0) | 2023.12.04 |
[JAVA | SWEA] #2058 자릿수 더하기 (0) | 2023.12.04 |
[JAVA | SWEA] #2063 중간값 찾기 (0) | 2023.12.04 |