blob: b74150700cbe810d27cb2312ac304085b9290299 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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();
}
}
}
|