728x90
반응형
https://www.acmicpc.net/problem/2440
using System;
using System.Collections.Generic;
public class Acmicpc02440
{
public static void Main(string[] args)
{
int i = int.Parse(Console.ReadLine());
for (int j=i; j>0; j--)
{
for (int k=0; k<j; k++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
728x90
반응형
'Job Wanted > 코테' 카테고리의 다른 글
[백준] 2558번 - A+B - 2 (C#) (0) | 2024.12.05 |
---|---|
[백준] 2475번 - 검증수 (C#) (0) | 2024.12.04 |
[백준] 10952번 - A+B - 5 (C#) (0) | 2024.12.04 |
[백준] 10871번 - X보다 작은 수 (C#) (0) | 2024.12.03 |
[SWEA] 1234. [S/W 문제해결 기본] 10일차 - 비밀번호 (0) | 2022.11.19 |