Exercise 7

You might also like

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

Exercise 7

Public Class Form1


Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Button1.Click
Me.Label5.Text = TextBox1.Text \ 25
Me.Label6.Text = (TextBox1.Text Mod 25) \ 10
Me.Label7.Text = (TextBox1.Text Mod 25 Mod 10) \ 5
Me.Label8.Text = (TextBox1.Text Mod 25 Mod 10 Mod 5) \ 1
End Sub
End Class

You might also like