1_Projekt_CzK_0228/ElsoProjekt/Program.cs
czimbalmoskristof23 3cc2a027cf Add project files.
2024-02-28 16:48:28 +01:00

25 lines
546 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElsoProjekt
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Üdv 13. estis évfolyam");
//Console.ReadKey();
Console.WriteLine();
byte a = 2;
int c = -30;
Console.WriteLine(int.MinValue+" - "+int.MaxValue);
Console.WriteLine(long.MinValue + " - " + long.MaxValue);
}
}
}