This program segment display the sum of the series [ 9 + 99 + 999 + 9999 .. for only ten terms. 1-.... 2-...... 3-...... 4-...... 5-..... Print s 1-t = 9 2-For i = 1 To 10 3-s = s+t 4-s = s* 10 + 9 5-Next i 1-t = 9 2-For i = 1 To 10 3-s = s+t 4-t = t * 9 +10 5-Next i 1-t = 9 2-For i = 1 To 10 3-s = s+t 4- Next i 5- t = t * 10 + 9 1-t = 9 2-For i = 1 To 10 3-s = s+t 4-t = t * 10 + 9 5-Next i 1-t = 10 2-For i = 1 To 9 3-s = s+t 4-t =t * 10 + 9 5-Next i

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 15PE
icon
Related questions
Question
This program segment display
the sum of the series [9 + 99 +
999 + 9999 ..] for only ten terms.
1-.....
2-........
3-.....
4-.....
5-......
Print s
1-t = 9 2-Fori = 1 To 10 3-s = s+t 4-s =
s* 10 + 9 5-Next i
1-t = 9 2-Fori = 1 To 10 3-s = s+t 4-t = t
* 9 +10 5-Next i
1-t = 9 2-For i = 1 To 10 3-s = s+t 4-
Next i 5- t = t * 10 + 9
1-t = 9 2-For i 1 To 10 3-s = s+t 4-t t
* 10 + 9 5-Next i
1-t = 10 2-For i = 1 To 9 3-s = s+t 4-t =t
* 10 + 9 5-Next i
Transcribed Image Text:This program segment display the sum of the series [9 + 99 + 999 + 9999 ..] for only ten terms. 1-..... 2-........ 3-..... 4-..... 5-...... Print s 1-t = 9 2-Fori = 1 To 10 3-s = s+t 4-s = s* 10 + 9 5-Next i 1-t = 9 2-Fori = 1 To 10 3-s = s+t 4-t = t * 9 +10 5-Next i 1-t = 9 2-For i = 1 To 10 3-s = s+t 4- Next i 5- t = t * 10 + 9 1-t = 9 2-For i 1 To 10 3-s = s+t 4-t t * 10 + 9 5-Next i 1-t = 10 2-For i = 1 To 9 3-s = s+t 4-t =t * 10 + 9 5-Next i
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Problems on Dynamic Programming
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