티스토리 뷰

VS-02분반수업

VSP02(2022-03-02)

choimyeongheon 2022. 3. 2. 21:50

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 / (height / 100 * height / 100);
            Console.WriteLine("bmi = "+bmi);
        }
    }
}


//c#으로 bmi 민들기 (첫수업)

비주얼 프로그래밍 - C#으로 windowsform에서 BMI계산기 만들기

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            string s = textBox1.Text;
            double weight = double.Parse(s);
            s = textBox2.Text;
            double height = double.Parse(s);
            double bmi = weight / (height / 100 * height / 100);
            label3.Text = "bmi = " + bmi;
        }
    }
}

이번엔 GUI를 구성해 보았음 //간단히 button, TB, label 만을 사용함.

 

VS를 사용한 bmi계산기 GUI 구현


 

'VS-02분반수업' 카테고리의 다른 글

VSP02(22-03-30)  (0) 2022.04.06
VSP02(2022-03-23)  (0) 2022.03.31
VSP02(2022-03-16)  (0) 2022.03.23
VSP02(2022-03-18)  (0) 2022.03.22
VSP02(2022-03-04)  (0) 2022.03.06
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
글 보관함