In general, the flow of control can be altered in two ways: selective or iterative. Selective statements provide selection around a number of statements whereas iterative statements provide repetition of a group of statements until a certain condition is met. The idea behind repetition is to minimize the program code by putting those statements that are expected to repeat in a certain block and restrict it by a certain condition. C programming language provides three types of iterative statements: for, while, and do-while. For loop and while loop are pre-conditional looping mechanisms whereas do-while loop is a post-conditional one. Pre- conditional loops simply check the condition for repetition at the beginning of the block whereas post-conditional loops give first iteration to unconditionally execute and then check the condition for repetition at the end of the loop. a) Write a C program that prints values between user-specified lower and upper limits using a loop. The program should ask the limits first and then print from the lower to the upper. V What if the user enters the upper limit before the lower? Improve your solution! b) Write a C program that keeps asking the user to specify integer values for calculating the summation of all values until a zero value is entered? Zero is chosen as a dummy value for stopping the input! v Which looping strategy do you prefer? While or do-while? c) Write a C program that calculates the summation of digits of a user-specified three-digit number. For instance, if user's input was 123, then it would result 6, i.e. 1+2+3.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Please solved step by step

In general, the flow of control can be altered in two ways: selective or iterative. Selective statements provide selection around a
number of statements whereas iterative statements provide repetition of a group of statements until a certain condition is met.
The idea behind repetition is to minimize the program code by putting those statements that are expected to repeat in a certain
block and restrict it by a certain condition. C programming language provides three types of iterative statements: for, while, and
do-while. For loop and while loop are pre-conditional looping mechanisms whereas do-while loop is a post-conditional one. Pre-
conditional loops simply check the condition for repetition at the beginning of the block whereas post-conditional loops give first
iteration to unconditionally execute and then check the condition for repetition at the end of the loop.
a) Write a C program that prints values between user-specified lower and upper limits using a loop. The program should
ask the limits first and then print from the lower to the upper.
v What if the user enters the upper limit before the lower? Improve your solution!
b) Write a C program that keeps asking the user to specify integer values for calculating the summation of all values until a
zero value is entered? Zero is chosen as a dummy value for stopping the input!
v Which looping strategy do you prefer? While or do-while?
c) Write a C program that calculates the summation of digits of a user-specified three-digit number. For instance, if user's
input was 123, then it would result 6, i.e. 1+2+3.
d) Write a C program that prints the following using a double-for-loop.
1
3
5
9.
11
13
15
17
19
21
23
25
27
29
31 33
35 37 39
Try to replace for loops with do-while loops!
Transcribed Image Text:In general, the flow of control can be altered in two ways: selective or iterative. Selective statements provide selection around a number of statements whereas iterative statements provide repetition of a group of statements until a certain condition is met. The idea behind repetition is to minimize the program code by putting those statements that are expected to repeat in a certain block and restrict it by a certain condition. C programming language provides three types of iterative statements: for, while, and do-while. For loop and while loop are pre-conditional looping mechanisms whereas do-while loop is a post-conditional one. Pre- conditional loops simply check the condition for repetition at the beginning of the block whereas post-conditional loops give first iteration to unconditionally execute and then check the condition for repetition at the end of the loop. a) Write a C program that prints values between user-specified lower and upper limits using a loop. The program should ask the limits first and then print from the lower to the upper. v What if the user enters the upper limit before the lower? Improve your solution! b) Write a C program that keeps asking the user to specify integer values for calculating the summation of all values until a zero value is entered? Zero is chosen as a dummy value for stopping the input! v Which looping strategy do you prefer? While or do-while? c) Write a C program that calculates the summation of digits of a user-specified three-digit number. For instance, if user's input was 123, then it would result 6, i.e. 1+2+3. d) Write a C program that prints the following using a double-for-loop. 1 3 5 9. 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 Try to replace for loops with do-while loops!
Expert Solution
steps

Step by step

Solved in 9 steps with 6 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY