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 F004_ScoreCalc
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnCalc_Click(object sender, EventArgs e)
{
double sum = double.Parse(txtKor.Text)
+ double.Parse(txtMat.Text)
+ double.Parse(txtEng.Text);
double avg = sum / 3;
txtSum.Text = sum.ToString(); //ToString 이면 어떤 것이든 문자열로 바뀜
txtAvg.Text = avg.ToString("0.00");
//ToString() 안에 포맷을 지정하는 기능이 있다.
}
private void txtKor_TextChanged(object sender, EventArgs e)
{
}
}
}