Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Public Class Form1

Dim Cents As Integer


Dim Quarters As Integer
Dim Dimes As Integer
Dim Nickles As Integer
Dim Pennies As Integer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Button1.Click
Cents = TextBox1.Text
Quarters = Cents \ 25
Dimes = (Cents Mod 25) \ 10
Nickles = ((Cents Mod 25) Mod 10) \ 5
Pennies = (((Cents Mod 25) Mod 10) Mod 5) \ 1
LabelQuar.Text = Quarters
LabelDime.Text = Dimes
LabelNick.Text = Nickles
LabelPen.Text = Pennies

End Sub
End Class

You might also like