
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:Write a python program that prompts the user to enter a series of strings, but with each string containing a small integer. Use a while loop and stop the loop when the
user enters a zero. When the loop has finished, the program should display:
the number of user inputs (not counting the final zero input).
the total of the integers in the strings entered.
the average of the integers accurate to one decimal place.
Sample Output
Enter a string and a number.abc1
Enter a string: def2
Enter a string: ghi3
Enter a string: xyz4
Enter a string: 0
Number of user inputs: 4
Total of these integers: 10
Average of the integers: 2.5
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

Knowledge Booster
Similar questions
- Write a complete program that: 1. Uses a do...while loop to prompt the user to enter a count that is greater than 1 and less than or equal to 20 then reads in a count from the keyboard as an integer. a. If input error occurs or the count the user enters is less than or equal to 1 or greater than 20, output an error. After outputting an error, clear/ignore the failed input and continue do...while looping until a valid number is entered. 2. Writes a triangle to the display using for loops. The triangle will be upside down. To write this triangle to the display: amountOfStars = number entered in (1). a. b. Output amountOfStars followed by a new line. C. Decrement amountOfStars by one. d. Continue from (b) until amountOfStars is zero. 3. Writes a triangle to the display using while loops. The triangle will be rightside up. To write this triangle to the display: a. amountOfStars = 1. b. Output amountOfStars followed by a new line. C. Increment amountOfStars by one. d. Continue from (b)…arrow_forwardWrite a do-while loop that continues to prompt a user to enter a number less than 100, until the entered number is actually less than 100. End each prompt with a newline. Ex: For the user input 123, 395, 25, the expected output is:Enter a number (<100): Enter a number (<100): Enter a number (<100): Your number < 100 is: 25 #include <iostream>using namespace std; int main() { int userInput; /* Your solution goes here */ cout << "Your number < 100 is: " << userInput << endl; return 0;}arrow_forwardWrite a do-while loop that continues to prompt a user to enter a number less than 100, until the entered number is actually less than 100. End each prompt with a newline. Ex: For the user input 123, 395, 25, the expected output is: Enter a number (<100): Enter a number (<100): Enter a number (<100): Your number < 100 is: 25 #include <iostream>using namespace std; int main() {int userInput; /* Your solution goes here */ cout << "Your number < 100 is: " << userInput << endl; return 0;} Please help me with this problem using c++.arrow_forward
- Convert the following for loop into do-while loop : for(int c =11; c>=0; c-=2) System.out.printIn("Count: "+ c);arrow_forward3. Out of the given loops, which loop/s will execute infinitely. a. for(; true; ) b. for(; false;) c. for(; 2==2; )arrow_forwardCan you use Python programming language to to this question? Thanksarrow_forward
- A loop should output 1 to n. If n is 5, the output is 12345. What should XXXand YYY be? Choices are in the form XXX / YYY.arrow_forwardMy question is for C programming. Create a while loop. Before the loop ask the user to enter an integer. Go through the loop as many times as the number entered. The loop stops as soon as the user enters 100 or -100. Keep count of the number of times you’ve gone through the loop and print this number in the loop.arrow_forwardFor C programming!! Thank u so much! Write a program that will uses a loop to display a table of the Celsius temperatures 0-20, and the Fahrenheit equivalents. To convert temperatures from Celsius to Fahrenheit, you need to use the following formula: Fahrenheit = Celsuis + 32.arrow_forward
- in phython langage Write a while loop that will print all the numbers between 200 and 300 (200 and 300 included) that are divisible by 3 but not divisible by 6. Your output should include the following numbers: 201 207 213 219 225 231 237 243 249 255 261 267 273 279 285 291 297arrow_forwardWrite a python program that determines the length of a user inputted string. Note: This program should NOT use the len() function Sample output: Enter a word: capybara The length of capybara is 8 This problem will help you practice using for loops. Remember the for and in keywords.arrow_forward
arrow_back_ios
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