完成完整的温度转换程序 while True: a = int(input("如果是华氏转摄氏,请按1\n,如果是摄氏转华氏,请按2\n")) if a==1: h = float(input("请输入华氏温度")) s = (h*1.8)+32 print("{}华氏度转是{}摄氏度".format(h,s)) elif a==2: s1 = float(input("请输入摄氏温度")) h1=(s-32)*5/9 pri
项目要用到这个功能,就写了一个,完整类也就二百来行,很简单.可以在项目中用,也可以作为学习. 源码下载 http://yunpan.cn/cmQCSWkhDnZLJ 访问密码 0227 核心代码如下: using System; using System.Collections.Generic; using System.Collections; using System.Text; using System.Xml; using System.Text.RegularExpressions;