Untitled
Anonymous
plain_text
11/07/2023 6:42 PM
380 B
19
Indexable
using System;
public class HelloWorld
{
public static void Main(string[] args)
{
for (int i=1; i<=3; i++) {
for (int j=1; j<=5; j++){
Console.Write(j);
}
Console.WriteLine("");
}
}
}Editor is loading...