728x90
프로그래머스 1단계
직사각형 별찍기
https://programmers.co.kr/learn/challenges
문제 설명
풀이
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
for(int i = 0; i<b; i++) {
for(int j = 0; j<a; j++) {
System.out.print("*");
}
System.out.println("");
}
}
}
728x90
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 예산 (0) | 2022.04.24 |
---|---|
[프로그래머스] 모의고사 (0) | 2022.04.24 |
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2022.04.24 |
[프로그래머스] 숫자 문자열과 영단어 (0) | 2022.04.24 |
[프로그래머스] 행렬의 덧셈 (0) | 2022.04.24 |
댓글