码迷,mamicode.com
首页 > 其他好文 > 详细

摄氏度转成华氏度

时间:2014-12-03 21:18:02      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   on   2014   问题   log   

//
//copyright(c) 2014软件技术1班
//All rights reserved.
//作者:A36黄阿德
//完成日期:2014年12月3日
//版本号:v1.0
//
//问题描述:创建一个程序来把摄氏度转成华氏度。
//输入描述:一个实数,代表摄氏度
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            double centigrade, fahrenheit;//定义变量centigade:摄氏度,fahrenheit:华氏度
            Console.WriteLine("请输入摄氏度:(C)");//提示输入摄氏度
            centigrade = double.Parse(Console.ReadLine());//用户输入
            fahrenheit = centigrade * 9 / 5 + 32;//摄氏度转换成华氏度
            Console.WriteLine("{0} 摄氏度-----华氏度 {1} ", centigrade, fahrenheit);
            Console.ReadKey();
        }
    }
}
bubuko.com,布布扣

摄氏度转成华氏度

标签:blog   http   io   ar   sp   on   2014   问题   log   

原文地址:http://blog.csdn.net/hbd0616/article/details/41703047

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!