◎ 문제
○ 출처
https://programmers.co.kr/learn/courses/30/lessons/12969
○ 문제 설명
이 문제에는 표준 입력으로 두 개의 정수 n과 m이 주어집니다. |
○ 제한 조건
|
○ 예시 - 입력
○ 예시 - 출력
○ 작성 예시 코드
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]);
Console.WriteLine("{0}", a + b);
}
}
◎ 나의 문제 풀이
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]);
string answer = string.Empty;
for (int i = 0; i < b; ++i)
{
for(int j = 0; j < a; ++j)
{
answer += "*";
}
// 개행
answer += Environment.NewLine;
}
Console.WriteLine(answer);
}
}
'프로그래밍 문제 풀이 > C#' 카테고리의 다른 글
[프로그래밍 문제 풀이] 프로그래머스 - 예산 (C#) (0) | 2020.07.20 |
---|---|
[프로그래밍 문제 풀이] 프로그래머스 - 문자열 내 마음대로 정렬하기 (C#) (0) | 2020.07.20 |
[프로그래밍 문제 풀이] 프로그래머스 - 행렬의 덧셈 (C#) (0) | 2020.07.20 |
[프로그래밍 문제 풀이] 프로그래머스 - 최대공약수와 최소공배수 (C#) (0) | 2020.07.19 |
[프로그래밍 문제 풀이] 프로그래머스 - 콜라츠 추측 (C#) (0) | 2020.07.19 |