大家好,乐天来为大家解答以下的问题,关于温度转换华氏度在线,温度转换华氏这个很多人还不知道,现在让我们一起来看看吧!
1、使用VS的Windows 应用程序代码如下:using System;using system.***.generic;using ***.componentmodel;using ***.data;using ***.drawing;using ***.text;using system.***.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.***.text == "") { this.***.focus(); ***.show("请输入温度!"); } else { try { if (((Button)sender).Name == "btnH") { f = ***.parse(this.***.text); this.***.text = "" + (f - 32) * (5.0 / 9); } if (((Button)sender).Name == "btnS") { c = ***.parse(this.***.text); this.***.text = "" + ((9.0 / 5) * c + 32); } } catch (Exception) { ***.show("请输入正确信息!"); this.***.text = ""; this.***.focus(); } } } }}。
本文分享完毕,希望对大家有所帮助。
标签:
免责声明:本文由用户上传,如有侵权请联系删除!