728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12969
소스코드
using System;
public class Example
{
public static void Main()
{
String[] s;
Console.Clear();
s = Console.ReadLine().Split(' ');
int a = Int32.Parse(s[0]);
int b = Int32.Parse(s[1]);
for (int i = 0; i < b; i++)
{
for (int j = 0; j < a; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 핸드폰 번호 가리기 C#(padLeft) (0) | 2023.06.16 |
---|---|
[프로그래머스]Lv.1 x만큼 간격이 있는 n개의 숫자 C#(반복간격공식) (0) | 2023.06.15 |
[프로그래머스]Lv.1 소수 만들기 C# (소수인지 확인) (0) | 2023.06.15 |
※[프로그래머스]Lv.1 모의고사 C# (나머지 값 활용) (0) | 2023.06.15 |
※[프로그래머스]Lv.1 체육복 C#(except) (0) | 2023.06.15 |