Untitled
unknown
plain_text
3 years ago
277 B
5
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...