티스토리 뷰
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-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 |