무엇이 출력될 것인가?

for (int i = 0; i < 3; i++)
{
    for (int j = 0; j < 5; j++)
    {
        Console.Write("*");
    }
    Console.WriteLine();
}
Copyright © 2024. All Rights Reserved. PAGS by Flytonic.