你好,我环顾四周,找不到一个使用函数转换温度的c#控制台应用程序。我已经差不多完成了这个程序,但由于某种原因,如果有人可以帮助我找到很棒的答案,那么celcius温度就不会出现了!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace temp_conversion
{
class tempConversion
{
static void Main(string[] args)
{
double far, cel;
far = GetTemp("Far");
cel= Celcius(far);
DisplayResults(far,cel);
}//end of main method
public static double GetTemp(string temp)
{
string inputValue;
double far;
Console.WriteLine("Enter Fahrenheith Temp");
inputValue = Console.ReadLine();
far = double.Parse(inputValue);
return far;
}
static double Celcius(double far)
{
double cel = 5.0 / 9.0 * (far - 32);
return cel;
}
public static void DisplayResults (double far , double cel)
{
Console.WriteLine("Fahrenhieith temp {0:N2}", far);
Console.WriteLine("C ", cel);
Console.ReadLine();
return;
}
}//end of class
}
答案 0 :(得分:0)
你需要在cel的写作线中包含你所拥有的{0:N2}
e.g。
Console.WriteLine("Celcius Temp {0:N2}", cel);
答案 1 :(得分:0)
你应该替换
Console.WriteLine("C ", cel);
与
Console.WriteLine("C {0:N2} ", cel);
答案 2 :(得分:0)
你也可以尝试这个
Console.WriteLine(" C {0:0.00}",cel);