编写一个C#程序,将摄氏温度转换为华氏温度.static void Main(string[] args){int c;double f; c = int.Parse(Console.ReadLine());f = c* 9/ 5.0 + 32;Console.WriteLine("摄氏温度:{0},华氏温度:{1}",c,f);}
来源:学生作业帮助网 编辑:六六作业网 时间:2025/01/25 01:41:56
编写一个C#程序,将摄氏温度转换为华氏温度.static void Main(string[] args){int c;double f; c = int.Parse(Console.ReadLine());f = c* 9/ 5.0 + 32;Console.WriteLine("摄氏温度:{0},华氏温度:{1}",c,f);}
编写一个C#程序,将摄氏温度转换为华氏温度.
static void Main(string[] args)
{
int c;
double f;
c = int.Parse(Console.ReadLine());
f = c* 9/ 5.0 + 32;
Console.WriteLine("摄氏温度:{0},华氏温度:{1}",c,f);
}
编写一个C#程序,将摄氏温度转换为华氏温度.static void Main(string[] args){int c;double f; c = int.Parse(Console.ReadLine());f = c* 9/ 5.0 + 32;Console.WriteLine("摄氏温度:{0},华氏温度:{1}",c,f);}
static void Main(string[] args)
{
int c;//定义整形变量
double f; //定义浮点型变量
c = int.Parse(Console.ReadLine());//获取输入并转换成整形,保存在整形变量中
f = c* 9/ 5.0 + 32;//通过公式,将获取的输入转换为华氏温度,保存在浮点型变量中
Console.WriteLine("摄氏温度:{0},华氏温度:{1}",c,f);//输出
}