Untitled

 avatar
unknown
plain_text
a year ago
285 B
6
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...