Collatz-Problem-implemented.../Collatz/Collatz/Program.cs
2016-03-18 21:13:16 +05:00

25 lines
532 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Collatz
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new CollatzProblem(10));
}
}
}