백준 2438번 문제

Console(콘솔)/알고리즘 2019. 9. 30. 17:15

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

 

namespace Syntax15

{

    class Program

    {

        static void Main(string[] args)

        {

            int input = int.Parse(Console.ReadLine());

            for(int i = 1; i <=input; i++)

            {

                for(int j = 0; j<i; j++)

                {

                    Console.Write("*");

                }

                Console.WriteLine();

            }

        }

    }

}

 

 

'Console(콘솔) > 알고리즘' 카테고리의 다른 글

백준 8393번  (0) 2019.09.30
백준 10430번  (0) 2019.09.27
백준 10869번  (0) 2019.09.27
백준 1008번  (0) 2019.09.27
백준 10998번  (0) 2019.09.27
: