class Program
{
static void Main(string[] args)
{
int temp;
string choice;
int finalTemp;
Console.WriteLine("Enter a temperature");
temp = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Convert to Celsius or Fahrenheit?" + "\n" +"Enter c or f");
choice = Console.ReadLine();
if (choice == "c")
{
Celsius(temp);
}
Console.ReadLine();//to keep open
} //Main End
public int Celsius(int t)
{
int c;
c = 5 / 9 * (t - 32);
return c;
}
}
我知道答案很简单,我似乎无法弄清楚我做错了什么。
我正在尝试将温度传递给摄氏度方法。