Untitled
unknown
plain_text
2 years ago
285 B
9
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...