diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61 (patch) | |
tree | 71b8f2b90711cfb94d8e0f1c0cdd22308b1bff62 /distance_file/Distance Calculator/Form1.cs | |
parent | pet info (diff) | |
download | wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.gz wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.bz2 wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.xz wf-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.zip |
distance file
Diffstat (limited to 'distance_file/Distance Calculator/Form1.cs')
-rw-r--r-- | distance_file/Distance Calculator/Form1.cs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/distance_file/Distance Calculator/Form1.cs b/distance_file/Distance Calculator/Form1.cs new file mode 100644 index 0000000..12c1e98 --- /dev/null +++ b/distance_file/Distance Calculator/Form1.cs @@ -0,0 +1,49 @@ +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; +using System.IO; +using System.Diagnostics; + +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); + + if (saveFile.ShowDialog() == DialogResult.OK) { + StreamWriter output = File.CreateText(saveFile.FileName); + + for (int i = 1; i <= hours; i++) { + output.WriteLine("After hour " + i + + " the distance is " + i * mph); + } + + output.Close(); + } + } + catch (Exception ex) { + MessageBox.Show(ex.Message); + } + } + + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} |