글
프로그래머스 C# 직사각형 별찍기(Console.Write, WriteLine)
프로그래밍
2023. 1. 24. 14:48
728x90
SMALL
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 j=0;j<b;j++)
{
for(int i=0;i<a;i++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
//두 번째 for문이 삼각형이랑 다르게 되어 있다.
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 특이한 정렬(OrderBy, ThenByDescending, Linq, Diagnostics, JAVA) (0) | 2023.01.24 |
---|---|
프로그래머스 C# 겹치는 선분의 길이(배열 선언, JAVA) (0) | 2023.01.24 |
프로그래머스 C# x만큼 간격이 있는 n개의 숫자(using System.Collections.Generic, List.Add) (0) | 2023.01.23 |
프로그래머스 C# 행렬의 덧셈(GetLength, 이중 배열 덧셈) (0) | 2023.01.23 |
프로그래머스 C# 최솟값 구하기(배열 곱의 최솟값, Reverse, Sort of Array) (0) | 2023.01.23 |