Can anyone help me check my BMI Calculator? (C#)
问题 I just started programming a week ago and my first assignment was to code a BMI calculator. It is supposed to look like this when launched: BMI Calculator Your weight in kg: x Your height in cm: x Gender (m/f): x -> You are underweight/normal/overweight Here is my code so far: Console.WriteLine("BMI Calculator"); Console.WriteLine("==========="); Console.WriteLine(); Console.Write("Weight in kg: "); int kg; kg = Convert.ToInt32(Console.ReadLine()); Console.Write("Height in cm: "); int m; m =