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 實驗二_1
{public partial class Form1 : Form{public Form1(){InitializeComponent();}private voidlabel2_Click(object sender, EventArgs e){}private voidForm1_Load(object sender, EventArgs e){}private voidbutton1_Click(object sender, EventArgs e){float temC;float temF;temC =int.Parse(sheshidu.Text);temF = temC *9/5+32;huashidu.Text = temF.ToString();}}}