Write a c++ program that will ask the user to enter an integer in a range 1-98 (without fraction) and then calculate the sum of the series 1.2+2.3+3.4+4.5+5.6+....... till that integer. Example: Input the last integer between 1 to 98 (without fraction) you want to add: 10 (user entered 10) Series: 1.2 + 2.3 + 3.4 + 4.5 + 5.6 + 6.7 + 7.8 + 8.9 + 9.1 + 10.11 (no need to print the series, only print the sum) Output: The sum of the series =59.61

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter4: Selection Structures
Section4.2: The If-else Statement
Problem 3E
icon
Related questions
icon
Concept explainers
Question

Write a c++ program that will ask the user to enter an integer in a range 1-98 (without fraction) and
then calculate the sum of the series 1.2+2.3+3.4+4.5+5.6+....... till that integer.
Example:
Input the last integer between 1 to 98 (without fraction) you want to add: 10 (user entered 10)
Series: 1.2 + 2.3 + 3.4 + 4.5 + 5.6 + 6.7 + 7.8 + 8.9 + 9.1 + 10.11 (no need to print the series, only
print the sum)
Output: The sum of the series =59.61
don’t accept a number with fraction as input

 

you can use if else statements, switch statements, do while loops, and while
loops. for loops and nested loops are not allowed.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Operators
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++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr