diff options
Diffstat (limited to 'distance_calc/Distance Calculator/Form1.cs')
-rw-r--r-- | distance_calc/Distance Calculator/Form1.cs | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/distance_calc/Distance Calculator/Form1.cs b/distance_calc/Distance Calculator/Form1.cs new file mode 100644 index 0000000..724190e --- /dev/null +++ b/distance_calc/Distance Calculator/Form1.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Distance_Calculator +{ + public partial class distanceCalculator : Form + { + public distanceCalculator() + { + InitializeComponent(); + } + + private void calculateButton_Click(object sender, EventArgs e) + { + try { + int hours = int.Parse(hoursTextBox.Text); + int mph = int.Parse(mphTextBox.Text); + + outputListBox.Items.Clear(); + + for (int i = 1; i <= hours; i++) { + outputListBox.Items.Add("After hour " + i + + " the distance is " + i * mph); + } + } + catch (Exception ex) { + MessageBox.Show(ex.Message); + } + } + + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} |