using System;
using System.Diagnostics.SymbolStore;
using System.Runtime.CompilerServices;
namespace LearnDotnet
{
internal class Program
{
static void Main(string[] args)
{
int j=0;
for (int i = 0; i < 5; i++)
{
Console.WriteLine("줄넘기를 했습니다.");
}
for (int i = 0; i < 4; i++)
{
Console.WriteLine("줄넘기{0}를 했습니다.", i + 1);
}
for (int i = 0; i < 3; i++)
{
Console.WriteLine("쌩쌩이를 했습니다.");
j = 2 * i;
}
Console.WriteLine("-------------------");
Console.WriteLine("줄넘기를 총 6회 했습니다.",j);
for (int i = 0; i < 9; i++)
{
Console.WriteLine("2 X {0} = {1}", i + 1, (i + 1) * 2);
}
}
}
}