The following program first reads an integer number 'number' assumed to be greater than zero entered by the user. After that, calculates (1/2+2/2+3/2 + ... + number/2) and stores the result in the totalTerms. Finally, it displays totalTerms to 2 decimal points. To solve the problem, drag and drop the appropriate statements shown below in the right missing parts of the program above. ### for i in range (1, number+1): number = int(input("Enter an integer greater than zero: ")) print ("totalTerms = %.2f" %total Terms) for i in range (i, number+1): totalTerms=0 totalTerms = totalTerms + 1/2 for i in range (1, number): totalTerms = totalTerms + number/2 for i in range (0, number): totalTerms = 1/2 #### totalTerms = number/2

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 32PE
icon
Related questions
Question
The following program first reads an integer number 'number' assumed to be greater than zero entered by the user. After that,
calculates (1/2+2/2+3/2 + ... + number/2) and stores the result in the totalTerms. Finally, it displays totalTerms to 2
decimal points.
To solve the problem, drag and drop the appropriate statements shown below in the right missing parts of the program c
above.
##################### ##################################################################
for i in range (1, number+1):
number = int(input("Enter an integer greater than zero: "))
print ("totalTerms = %.2f" %totalTerms)
for i in range (i, number+1):
totalTerms = 0
totalTerms = totalTerms + i/2
for i in range (1, number):
totalTerms = totalTerms + number/2
for i in range (0, number):
totalTerms = 1/2
totalTerms = number/2
Transcribed Image Text:The following program first reads an integer number 'number' assumed to be greater than zero entered by the user. After that, calculates (1/2+2/2+3/2 + ... + number/2) and stores the result in the totalTerms. Finally, it displays totalTerms to 2 decimal points. To solve the problem, drag and drop the appropriate statements shown below in the right missing parts of the program c above. ##################### ################################################################## for i in range (1, number+1): number = int(input("Enter an integer greater than zero: ")) print ("totalTerms = %.2f" %totalTerms) for i in range (i, number+1): totalTerms = 0 totalTerms = totalTerms + i/2 for i in range (1, number): totalTerms = totalTerms + number/2 for i in range (0, number): totalTerms = 1/2 totalTerms = number/2
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Mathematical functions
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr