我已新引進到C#編碼的世界。目前,我正在計劃使用總行駛距離和總行車時間來計算平均車速,並將結果乘以從紐約市到邁阿密的時間,以獲得從紐約市到邁阿密的距離。我已經在窗體上放置了四個textBoxes
,並且一個button
進行了計算。C#與私人雙重功能的工作來計算距離
我需要幫助建立功能。例如,爲了計算速度:速度=距離/時間。我如何將這些信息以CalculateVelocity()函數內的適當格式存儲?
4文本框和其標籤(這是用戶將inpu他們的數據):
Starting Mileage
Ending Mileage
Total Driving Time
Time from NY city to MIAMI
代碼(Code)功能,我使用:
private double CalculateVelocity()
{
//Calculate Velocity
}
public double GetTime()
{
//Get Time
return GetTime;
}
private double CalculateDistance(double velocity, double time)
{
//Calculate Distance
}
private double DisplayResults(double velocity, double time, double distance)
{
//Display Results
}
private double ClearTextboxes()
{
//Clear textboxes
}
// Property to GetTime
private double GetTime
{
get
{
// variable to hold time
double time = double.MinValue;
// Safely parse the text into a double
if (double.TryParse(tbTime.Text, out time))
{
return time;
}
// Could just as easily return time here
return double.MinValue;
}
set
{
// Set tbTime
tbTime.Text = value.ToString();
}
}
private void button1_Click(object sender, EventArgs e)
{
//Calculate and display result in a label
}
所以,你要採取的開始里程和終點裏程來獲得距離,然後在使用的時候輸入計算速度? – LukeHennerley
@LukeHennerley,當按下按鈕時,一個平均速度將使用的總行駛距離和travled的總小時數計算,並且將被乘以時間從NY城市MIAMI得到去從NY城市的距離邁阿密。標籤報告速度,時間和距離。 – techAddict82