[백준] C# : 구구단 (2739번)

ssu_hyun·2022년 7월 18일
0

Data Structure & Algorithm

목록 보기
36/67
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Baekjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            for (int i = 1; i <10; i++)
            {
                Console.WriteLine($"{n} * {i} = {n*i}");
            }
        }
    }
}

0개의 댓글