我想在c#中製作一個非常簡單的公斤轉換器。要做到這一點,我希望讀取用戶的編號,將其乘以2.2,將其存儲爲變量,然後打印結果。 但是,我得到一個錯誤的地方,我說2.2「運算符*'不能應用於類型'字符串'或'雙''」的操作數的時候。我無法真正看到我做錯了什麼。這裏是我的代碼:製作轉換器遇到麻煩
class Program
{
static void Main(string[] args)
{
//this application will convert kilograms to pounds
string kiloAmount;
Console.WriteLine("Type the number of pounds:");
kiloAmount = Console.ReadLine();
Convert.ToDouble(kiloAmount);
double poundsAmount = kiloAmount * 2.2;
Console.WriteLine(kiloAmount);
Console.ReadKey();
}
}
對不起,剛纔意識到應該說數公斤,而不是磅。 – Pixeleos
如果你想改變或提供更多信息等,你可以[編輯]你的問題。 –