Please write a program which asks the user to type in an integer number. If the user types in a number equal to or below 0, the execution ends. Otherwise the program prints out the factorial of the number. The factorial of a number involves multiplying the number by all the positive integers smaller than itself. In other words, it is the product of all positive integers less than or equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120. Some examples of expected behaviour: Please type in a number: 3 The factorial of the number 3 is 6 Please type in a number: 4 The factorial of the number 4 is 24 Please type in a number: -1 Thanks and bye! Please type in a number: 1 The factorial of the number 1 is 1 Please type in a number: 0 Thanks and bye! Sample output Sample output
Please write a program which asks the user to type in an integer number. If the user types in a number equal to or below 0, the execution ends. Otherwise the program prints out the factorial of the number. The factorial of a number involves multiplying the number by all the positive integers smaller than itself. In other words, it is the product of all positive integers less than or equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120. Some examples of expected behaviour: Please type in a number: 3 The factorial of the number 3 is 6 Please type in a number: 4 The factorial of the number 4 is 24 Please type in a number: -1 Thanks and bye! Please type in a number: 1 The factorial of the number 1 is 1 Please type in a number: 0 Thanks and bye! Sample output Sample output
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Hello...Its not correct....
![Please write a program which asks the user to type in an integer number. If the user
types in a number equal to or below 0, the execution ends. Otherwise the program
prints out the factorial of the number.
The factorial of a number involves multiplying the number by all the positive integers
smaller than itself. In other words, it is the product of all positive integers less than or
equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120.
Some examples of expected behaviour:
Please type in a number: 3
The factorial of the number 3 is 6
Please type in a number: 4
The factorial of the number 4 is 24
Please type in a number: -1
Thanks and bye!
Please type in a number: 1
The factorial of the number 1 is 1
Please type in a number: 0.
Thanks and bye!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
▶RUN
code
num= int(input ("Enter a number: "))
factorial = 1
# check if the number is negative, positive or zero
if num < 0:
print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
print("The factorial of 0 is 1")
else:
for i in range (1, num + 1):
factorial
factorial*i
print("The factorial of", num,"is", factorial)
TEST
Test Results
Reset
Sample output
FAIL: PythonEditorTest: test_1_execution_ends
Make sure that the execution of your program ends with the input
1
0
Sample output
Need help?
Close](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F466dfe05-514c-4e8d-9e28-eee295fc0d76%2F1592fac1-696c-459f-8aaa-cef717400d70%2Fxwg91he_processed.jpeg&w=3840&q=75)
Transcribed Image Text:Please write a program which asks the user to type in an integer number. If the user
types in a number equal to or below 0, the execution ends. Otherwise the program
prints out the factorial of the number.
The factorial of a number involves multiplying the number by all the positive integers
smaller than itself. In other words, it is the product of all positive integers less than or
equal to the number. For example, the factorial of 5 is 1 * 2 * 3 * 4 * 5 = 120.
Some examples of expected behaviour:
Please type in a number: 3
The factorial of the number 3 is 6
Please type in a number: 4
The factorial of the number 4 is 24
Please type in a number: -1
Thanks and bye!
Please type in a number: 1
The factorial of the number 1 is 1
Please type in a number: 0.
Thanks and bye!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
▶RUN
code
num= int(input ("Enter a number: "))
factorial = 1
# check if the number is negative, positive or zero
if num < 0:
print("Sorry, factorial does not exist for negative numbers")
elif num == 0:
print("The factorial of 0 is 1")
else:
for i in range (1, num + 1):
factorial
factorial*i
print("The factorial of", num,"is", factorial)
TEST
Test Results
Reset
Sample output
FAIL: PythonEditorTest: test_1_execution_ends
Make sure that the execution of your program ends with the input
1
0
Sample output
Need help?
Close
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education