Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Pages in a Book: Write a program that prompts the user to enter a positive integer m that represents the sum of all page numbers

Pages in a Book: Write a program that prompts the user to enter a positive integer m that represents the sum of all page numbers in a book. The program prints whether the number is a valid sum or not. For example, the integer 21 is a valid sum of page numbers because 1 + 2 + 3 + 4 + 5 + 6 = 21. The integer 25 is not a valid sum because the sum of the first 6 page numbers is 21 and the next page number is 7, so the sum of the first 7 page numbers should be 28. If m is a valid sum of all page numbers, then there must be an integer n such that 1+2+3+ + n = n (n+1)/2 = m
Sample inputs / outputs:
Enter the sum of pages: 4005
4005 is a valid sum of page numbers
image text in transcribed
Pages in a Book: Write a program that prompts the user to enter a positive integer m that represents the sum of all page numbers in a book. The program prints whether the number is a valid sum or not. For example, the integer 21 is a valid sum of page numbers because 1 + 2 + 3 +4 +5 +6 = 21. The integer 25 is not a valid sum because the sum of the first 6 page numbers is 21 and the next page number is 7, so the sum of the first 7 page numbers should be 28. If m is a valid sum of all page numbers, then there must be an integer n such that 1+2+3+ ... +n=n (n+1)/2 = m Sample inputs / outputs: Enter the sum of pages: 4005 4005 is a valid sum of page numbers 12

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

Web Database Development Step By Step

Authors: Jim Buyens

1st Edition

0735609667, 978-0735609662

Students also viewed these Databases questions

Question

=+What is the most that you should pay to complete development?

Answered: 1 week ago