题目
摄氏温度和华氏温度之间的转换.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace _11_1
{
public partial class Form1 :Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender,EventArgs e)
{
HUAtextBox2.Text = ((9 / 5.0) * Double.Parse(SHEtextBox1.Text) +32).ToString();
}
private void button2_Click(object sender,EventArgs e)
{
SHEtextBox1.Text = ((5 / 9.0) * (Double.Parse(HUAtextBox2.Text) - 32)).ToString();
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace _11_1
{
public partial class Form1 :Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender,EventArgs e)
{
HUAtextBox2.Text = ((9 / 5.0) * Double.Parse(SHEtextBox1.Text) +32).ToString();
}
private void button2_Click(object sender,EventArgs e)
{
SHEtextBox1.Text = ((5 / 9.0) * (Double.Parse(HUAtextBox2.Text) - 32)).ToString();
}
}
}
提问时间:2020-06-11
答案
摄氏温度与华氏温度的换算式是:
摄氏温度,冰点时温度为0摄氏度,沸点为100摄氏度
而华氏温度把冰点温度定为32华氏度,沸点为212华氏度
所以1摄氏度等于1.8华氏度
摄氏温度与华氏温度的换算式是:
5(F- 50º)= 9(C-10º)
式中F-华氏温度,C-摄氏温度
华氏度比摄氏度较小.一华氏度等于9/5摄氏度数值+32
将摄氏度转成华氏度,直接乘以9,除以5,再加上32即行.例如,你的体温是37摄氏度.37乘以9等于333.除以5等于 66.6.32加 66.6得 98.6,这就是你体温的华氏度数.
摄氏温度,冰点时温度为0摄氏度,沸点为100摄氏度
而华氏温度把冰点温度定为32华氏度,沸点为212华氏度
所以1摄氏度等于1.8华氏度
摄氏温度与华氏温度的换算式是:
5(F- 50º)= 9(C-10º)
式中F-华氏温度,C-摄氏温度
华氏度比摄氏度较小.一华氏度等于9/5摄氏度数值+32
将摄氏度转成华氏度,直接乘以9,除以5,再加上32即行.例如,你的体温是37摄氏度.37乘以9等于333.除以5等于 66.6.32加 66.6得 98.6,这就是你体温的华氏度数.
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
最新试题
- 1My cousin wants to be a policeman 改为同义句
- 2象鞍上留着弹洞,似乎还血迹斑斑,混合着一股皮革、硝烟、战尘和血液的奇特气味.是不是比喻句?
- 3( )( )灯火的成语
- 41-二分之一+三分之一 有理数 加减法混合运算
- 5求证:a2+b2+3≥ab+3(a+b).
- 6某数与3的和是某数与2的平方和给列方程
- 7母线长为2,底面圆的半径为1的圆锥的侧面积为_.
- 8解方程(全过程) 30%x+40%Y=5.3 60%X-50%Y=0.2
- 9工会如何翻译成英语
- 10Why does she always ask you for help ---- There is no one else ( ),is there
热门考点