
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question

Transcribed Image Text:loop-2.py In your program ...
Ask the user for a small number.
see hints
Welcome to our counting program.
Then, ask the user for a larger number to count
up to. *see hints
It also adds up the digits that you count!
Please enter a small number, 0 or higher: five
Your program should use a for loop and the
range function to print the numbers counted,
and add each one to the next, from the small
number to the large number. Display the total in
a good-looking print statement as shown.
Please enter a whole number only: 5
Now, enter a larger number that you want to count up to: 3
Enter a whole number greater than your start number (5): 10
08
6.
7
*Hint 1: the two user-defined numbers will
become the start and stop values for your range
9.
10
function.
The total of all the numbers you counted is: 45.
*Hint 2: int validation required. In addition to
requiring whole numbers for both inputs, the
second number has to be greater than the first
number.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

Knowledge Booster
Similar questions
- 3. What will be the value of x after the following loop is executed? X = 1 For i = 1 To 2 For j = 1 To 3 X = X *i* j Next j Next iarrow_forwardWrite a do-while loop that asks the user to enter two numbers. The numbers should be added and the sum displayed. The user should be asked if he or she wishes to perform the operation again. If so, the loop should repeat; otherwise it should terminate.arrow_forwardAim Using a for loop and a range function, you have been asked to find the even numbers between 5 and 55 and then find their sum. Steps for Completion 1. Define a counter for the sum named total_sum. 2. Define a for loop with an even range for numbers between 5 and 55. 3. Add each looped number to the sum. 4. Outside the loop, print out total_sum. The output should be as shown in Snippet 3.50: 750 Snippet 3.50arrow_forward
- The purpose of using a loop is to Select one: A. Repeat operation(s) many times B. Repeat operation(s) many time and make decision C. make decision D. None of the option mentionedarrow_forward2. Write a program that uses a while loop to play a number guessing game. The computer should pick a number using random number generation and then continue asking the user to guess the number until they get it right. For each, gues, the computer should tell the user if the guess is too high or too low or is correct. 3. Using nested for loops, right a program that displays a bar chart (using asterisks) for a number entered by the user. For example, if the user enters 4, the bar chart looks like this:arrow_forward3. Out of the given loops, which loop/s will execute infinitely. a. for(; true; ) b. for(; false;) c. for(; 2==2; )arrow_forward
- EXERCISE 19 Write a program using for loop that generates a multiplication table for any integer (given by the user) up to any multiple (also given by the user). Your output should be similar to what is given in the sample below. Sample Output >> exercise19 Enter the number for which you want to create the multiplication table: 91 Enter the number up to which multiplication table is required: 5 91 X 1- 91 91 X 2 = 182 91 X 3 - 273 91 X 4 - 364 91 X 5- 455 >> Electronic Engineering Technology---MATLAB Tutorialarrow_forwardn a while loop, generate a random integer from 0 to 9. Use srand() only once. Keep track of the number of iterations and quit the loop when the random integer is equal to 5. Report the number of iterations.arrow_forwardA semicolon (;) is necessary at the end of which type of the loop? All loops do-while while forarrow_forward
- Q5: Convert the following for loop into a while loop. (1 mark) for(number = 1; number <= 11; number++) cout << setw(3) <« number;arrow_forward5. What will be the value of x after the following loop is executed? X = 0 For i = 1 To 2 For j = 1 To 3 X = X +i* j Next j Next iarrow_forwardExercise # 2: Write a while loop that prints all positive numbers that are divisible by 10 and less than the user input value n. For example, if the user enters 100, the program shall print 10 20 30 40 50 60 70 80 90.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

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 Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

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
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY