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

19
BMI/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMI {
internal class Program {
static void Main(string[] args) {
Console.WriteLine("Adja meg a magassagat cm-ben");
int magassag = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Adja meg a tomeget");
int tomeg = Convert.ToInt32(Console.ReadLine());
double bmi = tomeg / (magassag * magassag);
Console.WriteLine("BMI-je: " + bmi);
}
}
}