about summary refs log tree commit diff
path: root/coin_counter/Coin Counter/mainForm.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2 (patch)
treedfdc9fb26bf11622a957181c851810ce4cbdca21 /coin_counter/Coin Counter/mainForm.cs
parentfactorial calc (diff)
downloadsql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar.gz
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar.bz2
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.tar.xz
sql-3fa2ca605bff7f741096c3c69f5650c9e6b1b4b2.zip
coin counter
Diffstat (limited to 'coin_counter/Coin Counter/mainForm.cs')
-rw-r--r--coin_counter/Coin Counter/mainForm.cs56
1 files changed, 56 insertions, 0 deletions
diff --git a/coin_counter/Coin Counter/mainForm.cs b/coin_counter/Coin Counter/mainForm.cs
new file mode 100644
index 0000000..b741507
--- /dev/null
+++ b/coin_counter/Coin Counter/mainForm.cs
@@ -0,0 +1,56 @@
+using System;

+using System.Collections.Generic;

+using System.ComponentModel;

+using System.Data;

+using System.Diagnostics.Eventing.Reader;

+using System.Drawing;

+using System.Linq;

+using System.Linq.Expressions;

+using System.Text;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace Coin_Counter

+{

+    public partial class coinCounter : Form

+    {

+        public coinCounter()

+        {

+            InitializeComponent();

+        }

+

+        private void calcBtn_Click(object sender, EventArgs e)

+        {

+            try {

+                int cents = int.Parse(penniesTxtBox.Text) +

+                    int.Parse(nickelsTxtBox.Text) * 5 +

+                    int.Parse(dimesTxtBox.Text) * 10 +

+                    int.Parse(quartersTxtBox.Text) * 25;

+

+                if (cents < 100)

+                    MessageBox.Show("That's less than a dollar. Try again.");

+                else if (cents > 100)

+                    MessageBox.Show("That's more than a dollar. Try again.");

+                else

+                    MessageBox.Show("Congratulations! That's exactly one dollar.");

+            }

+            catch {

+                MessageBox.Show("Enter a whole number in each box.");

+            }

+        }

+ 

+

+        private void clearBtn_Click(object sender, EventArgs e)

+        {

+            penniesTxtBox.Text = "0";

+            nickelsTxtBox.Text = "0";

+            dimesTxtBox.Text = "0";

+            quartersTxtBox.Text = "0";

+        }

+

+        private void exitBtn_Click(object sender, EventArgs e)

+        {

+            this.Close();

+        }

+    }

+}