Chapter 3 Project 5 MakeChangeGui
Gaming with Drip
0:00 / 0:00
Chapter 3 Project 5 MakeChangeGui
13 просмотров · 10 дней назад
Gaming with Drip
8 подписчиков
13 просмотров · 10 дней назад
In this C# Windows Forms programming assignment, I created a GUI application called MakeChangeGUI that converts an entered dollar amount into the appropriate currency denominations.
I created the graphical user interface with a textbox for entering the dollar amount, a Calculate button, and labels to display the results. The program uses integer division and the remainder operator to determine how many twenty-dollar bills, ten-dollar bills, five-dollar bills, and one-dollar bills are needed.
For example, when entering $113, the program calculates 5 twenties, 1 ten, 0 fives, and 3 ones.
This assignment gave me additional practice working with C# variables, integer division, the modulus/remainder operator, button click events, textboxes, labels, and displaying calculated results in a Windows Forms GUI.