Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Windows Form code# In this exercise, youll create a form that accepts an integer from the user and then calculates the factorial of that integer.

image text in transcribedWindows Form code#

In this exercise, youll create a form that accepts an integer from the user and then calculates the factorial of that integer.

Reminder: The factorial of an integer is that integer multiplied by every positive integer less than itself. A factorial number is identified by an exclamation point following the number. Heres how you calculate the factorial of the numbers 1 through 5: 1! = 1 which equals 1 2! = 2 * 1 which equals 2 3! = 3 * 2 * 1 which equals 6 4! = 4 * 3 * 2 * 1 which equals 24 5! = 5 * 4 * 3 * 2 * 1 which equals 120 To be able to store the large integer values for the factorial, this application cant use the Int32 data type.

1. Start a new project named Factorial in the Assignmnet3\Ex1_Factorial directory.

2. Add labels, text boxes, and buttons to the default form and set the properties of the form and its controls so they appear as shown above. When the user presses the Enter key, the Click event of the Calculate button should fire. When the user presses the Esc key, the Click event of the Exit button should fire.

3. Create an event handler for the Click event of the Calculate button. a. This event handler should get the number the user enters, b. calculate the factorial of that number (you will use for or while loop), c. display the factorial with commas but no decimal places (think of formatting), d. and move the focus to the Number text box. e. It should return an accurate value for integers from 1 to 20. (The factorial of the number 20 is shown in the form above.)

4. Create an event handler for the Click event of the Exit button that closes the form.

5. Test the application to be sure it works correctly.

Factorial Calculator lue l Number 20 Factorial: 2.432.902.008.176.640 000 calculate

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Systems

Authors: Ramez Elmasri, Sham Navathe

4th Edition

0321122267, 978-0321122261

More Books

Students also viewed these Databases questions

Question

=+j Enabling a productive global workforce.

Answered: 1 week ago

Question

=+ Are you interested in creating or

Answered: 1 week ago