
VS.ver2017을 사용함. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _002bmi { class Program { static void Main(string[] args) { Console.Write("체중(kg) : "); string s = Console.ReadLine(); double weight = double.Parse(s); Console.Write("키(cm) : "); s = Console.ReadLine(); double height = double.Parse(s); double bmi = weight..
VS-02분반수업
2022. 3. 2. 21:50