3

計算ボタンを押すと、移動した合計距離と移動した合計時間を使用して平均速度が計算され、これにニューヨーク市からマイアミまでの移動時間を掛けて、からの距離を取得するプログラムを作成しました。 NYからマイアミへ。ボタンをクリックLabel1すると、速度、時間、距離が報告され、Clear_textBox()すべてのテキスト ボックス フィールドがクリアされます。問題は、結果が返されずにエラーが発生することです。

私のコードに加えられる変更について、誰かが私にガイダンスを与えることができますか?

エラーDisplay_Resultsとプロパティを受け取っている関数private double get_Time

   namespace form1
   {
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }



    private double Calculate_Velocity()
    {
        //Calculate Velocity
        int startingMileageBox;
        startingMileageBox = Convert.ToInt32(textBox1.Text);

        int endingMileageBox;
        endingMileageBox = Convert.ToInt32(textBox2.Text);

        double time = Get_Time(); //assuming you have set up GetTime()
        double distance = endingMileageBox - startingMileageBox;
        return distance / time; 
    }

   public double Get_Time()
    {
        //Get Time
        return get_Time;
    }

    private double Calculate_Distance(double velocity, double time)
    {
        //Calculate Distance
        return velocity * time;
    }

    private void Display_Results(double velocity, double time, double distance)
    {
        //Display Results
        label1.Text = "Velocity = " + velocity.ToString() + " time= " + time.ToString() + " Distance = " + distance.ToString();
    }

    private void Clear_Textboxes()
    {
        //Clear textboxes
        textBox1.Clear();
        textBox2.Clear();
        textBox3.Clear();
        textBox4.Clear();
    }



    // Property to GetTime
    private double get_Time
    {


        get
        {



            // variable to hold time
            double time = double.MinValue;

            // Safely parse the text into a double
            if (double.TryParse(textBox3.Text, out time))
            {
                return time;
            }

            // Could just as easily return time here   
            return double.MinValue;
        }
        set
        {
            // Set tbTime
            textBox3.Text = value.ToString();
        }
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }

    private void button2_Click(object sender, EventArgs e)
    {
        Close(); 
    }

    private void button1_Click(object sender, EventArgs e)
    {
        double v = Calculate_Velocity();
        double t = Get_Time();

        double d = Calculate_Distance(v, t);
        Display_Results(v, t, d);

        Clear_Textboxes();

    }
}

}

ここに画像の説明を入力

4

1 に答える 1

5

エラーはこの関数にあると思います

private double Display_Results(double velocity, double time, double distance)
            {
                //Display Results
                label1.Text = time + velocity + distance;
            }

時間+速度+距離の値を文字列形式に変換してください。

フォローしてみてください

private double Display_Results(double velocity, double time, double distance)
            {
                //Display Results
                double v=-velocity;
                double t=-time;
                double d=-distance;

                label1.Text = (t + v + d).ToString();
            }
于 2012-09-26T03:29:19.540 に答える