我刚刚被介绍到 C# 编码的世界。目前,我正在编写程序,该程序将使用总行驶距离和总行驶小时数计算平均速度,该结果将乘以从纽约市到迈阿密的时间,以获得从纽约市到迈阿密的距离。我textBoxes
在表格上放了四个,一个button
用来计算。
我需要帮助构建功能。例如,为了计算速度:速度=距离/时间。我如何将这些信息以正确的格式放入 CalculateVelocity() 函数中?
4 个文本框及其标签(这是用户输入数据的地方):
Starting Mileage
Ending Mileage
Total Driving Time
Time from NY city to MIAMI
我正在使用的代码功能:
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
}