Untitled

Anonymous
plain_text
03/28/2023 8:07 AM
372 B
15
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...