문제
해결방안
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.Write("\n");
}
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 3진법 뒤집기 (0) | 2024.06.25 |
---|---|
프로그래머스 C# 최대공약수와 최소공배수 (0) | 2024.06.25 |
프로그래머스 C# 행렬의 덧셈 (0) | 2024.06.24 |
프로그래머스 C# 문자열 다루기 기본 (0) | 2024.06.24 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2024.02.23 |