This commit is contained in:
2022-06-07 13:52:04 +02:00
parent 90a869e261
commit 1bdf50c864
219 changed files with 2302 additions and 46 deletions

21
Ponthatar/Program.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ponthatar {
internal class Program {
static void Main(string[] args) {
Console.WriteLine("Adja meg a pontszamat");
int pont = Convert.ToInt32(Console.ReadLine());
if (pont <= 50) Console.WriteLine("Elegtelen");
else if (pont <= 65) Console.WriteLine("Elegseges");
else if (pont <= 80) Console.WriteLine("Kozepes");
else if (pont <= 90) Console.WriteLine("Jo");
else if (pont > 90) Console.WriteLine("Jeles");
else Console.WriteLine("Rossz adatot adott meg");
}
}
}