华氏温度转换为摄氏温度程序代码怎么编写
使用VS的Windows 应用程序代码如下:
using System;
using System。Collections。Generic;
using System。ComponentModel;
using System。 Data;
using System。Drawing;
using System。Text;
using System。Windows。Forms;
namespace WindowsApplication1
{
public partial class MainForm : Form
{
//f=9/5*c+32,其中f为华氏温度,c为摄氏温度
double f...全部
使用VS的Windows 应用程序代码如下:
using System;
using System。Collections。Generic;
using System。ComponentModel;
using System。
Data;
using System。Drawing;
using System。Text;
using System。Windows。Forms;
namespace WindowsApplication1
{
public partial class MainForm : Form
{
//f=9/5*c+32,其中f为华氏温度,c为摄氏温度
double f, c = 0。
00;
public MainForm()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btnH_Click(object sender, EventArgs e)
{
if (this。
txtOld。Text == "")
{
this。txtOld。Focus();
MessageBox。
Show("请输入温度!");
}
else
{
try
{
if (((Button)sender)。
Name == "btnH")
{
f = double。Parse(this。txtOld。Text);
this。
txtNew。Text = "" + (f - 32) * (5。0 / 9);
}
if (((Button)sender)。
Name == "btnS")
{
c = double。Parse(this。txtOld。Text);
this。
txtNew。Text = "" + ((9。0 / 5) * c + 32);
}
}
catch (Exception)
{
MessageBox。
Show("请输入正确信息!");
this。txtOld。Text = "";
this。txtOld。Focus();
}
}
}
}
}
亲,如果我的回答有帮助到您的话,记得给个好评哦 ~>_<~+)。
收起