백준 2739번

Console(콘솔)/알고리즘 2019. 9. 27. 11:37

using System;

 

 

namespace Syntax12

{

    class Program

    {

        static void Main(string[] args)

        {

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

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

            {

                Console.WriteLine($"{input} * {i} = {input * i}");

            }

        }

    }

}

 

 

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

백준 2588번  (0) 2019.09.27
백준 10171번  (0) 2019.09.27
백준 10817번  (0) 2019.09.27
백준 1330번  (0) 2019.09.27
백준 1110번  (0) 2019.09.27
: