[C#] 11일차 - 74. 피라미드 메소드C#/C#200제2021. 2. 5. 10:51
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A074_PyramidMethod
{
class Program
{
static void Main(string[] args)
{
DrawPyramid(3);
DrawPyramid(5);
DrawPyramid(7);
}
static void DrawPyramid(int num)
{
for(int i=1; i<=num; i++)
{
for (int j = i; j < num; j++)
Console.Write(" ");
for (int k = 1; k <= 2 * i -1; k++)
Console.Write("*");
Console.WriteLine();
}
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 11일차 - 76. 두 숫자 사이의 모든 정수값을 더하는 메소드 (0) | 2021.02.05 |
---|---|
[C#] 11일차 - 75. 팩토리얼을 계산하는 메소드 (0) | 2021.02.05 |
[C#] 11일차 - 73. 생애계산기 (0) | 2021.01.31 |
[C#] 11일차 - 72. 윤년인지 알아내는 정적 메소드 (0) | 2021.01.31 |
[C#] 11일차 - 71. 소수인지를 알아내는 정적 메소드 (0) | 2021.01.31 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!