Untitled

 avatar
unknown
plain_text
2 years ago
277 B
2
Indexable
using System;
using System.Threading;

class Program
{
    static void Main(string[] args)
    {
        Console.Write("Enter an integer: ");
        int n = int.Parse(Console.ReadLine());
        Thread t = new Thread(() =>
        {
            for (int i = 1; i
Editor is loading...