Problem Solving with C++ (10th Edition)
10th Edition
ISBN: 9780134448282
Author: Walter Savitch, Kenrick Mock
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Textbook Question
Chapter 2.3, Problem 18STE
Write a complete C++
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
write a C++ program. Write a program that receives a numeric check amount, that is less than $1000.00, from the user and writes the word equivalent of the amount.For example, the amount 112.43 should be written as:One Hundred Twelve and 43/100 dollarsDo not accept invalid amounts.Allow the user to run the program as many times as possible until a sentinel value of zero (0) has been entered for the check amount. Don’t forget to include the developerInfo function.No input, processing, or output should happen in the main function. All work should be delegated to other functions. Include the recommended minimum documentation for each function.Every function in your program should be limited to performing a single, well defined task, and the name of the function should express that task effectively.Compile your program and correct all syntax errors and warnings
This is for C++:
Design a program that simulates a lottery game. The California SuperLotto game is a perfect example of a lottery game. The SuperLotto game is designed to print five number randomly between 1 and 47 in one straight line, plus one random mega number between 1 - 27. Design a program that mimics this popular California game.
Ask the user for the number of lines to play (keep it at no more than 5 lines)
The output prints the number of lines
Next, print the mega number(s). Remember, the mega must equal the number of lines requested. For example, one line of SuperLotto would equal one mega number. Same would be for five lines of SuperLotto (5 SuperLotto = 5 mega numbers).
The numbers do not need to be in neither ascending nor descending order.
Validate your input by not allowing the user to enter a 0 for the number of lines to play. Display a message that says, "Incorrect value. Must be greater than 1".
You output should look like the attached picture:
Write a C++ Program, using functions, that, given a number greater than zero (0), the user will choose to calculate one of the following values:
the fibonacci series up to that number, where any number in the sequence is the sum of the previous two numbers:
the sum of the numbers up to that number, given by the equation:
the inverse square series up to that number, given by the equation:
the Sum of alternating sign Squares up to that number, given by the equation
the Sum of the factorial to the power of the number, given by the equation:
Each option should have its own function. A function can call another function. Validate your input.Hint: Use loops and static local variables if you need them.
Chapter 2 Solutions
Problem Solving with C++ (10th Edition)
Ch. 2.1 - Give the declaration for two variables called feet...Ch. 2.1 - Give the declaration for two variables called...Ch. 2.1 - Give a C++ statement that will change the value of...Ch. 2.1 - Give a C++ statement that will increase the value...Ch. 2.1 - Give a C++ statement that will change the value of...Ch. 2.1 - Prob. 6STECh. 2.1 - Prob. 7STECh. 2.2 - Give an output statement that will produce the...Ch. 2.2 - Give an input statement that will fill the...Ch. 2.2 - Prob. 10STE
Ch. 2.2 - Write a complete C++ program that writes the...Ch. 2.2 - Write a complete C++ program that reads in two...Ch. 2.2 - Prob. 13STECh. 2.2 - Write a short program that declares and...Ch. 2.3 - Convert each of the following mathematical...Ch. 2.3 - Prob. 16STECh. 2.3 - What is the output of the following program lines...Ch. 2.3 - Write a complete C++ program that reads two whole...Ch. 2.3 - Given the following fragment that purports to...Ch. 2.3 - What is the output of the following program lines...Ch. 2.4 - Write an if-else statement that outputs the word...Ch. 2.4 - Suppose savings and expenses are variables of type...Ch. 2.4 - Write an if-else statement that outputs the word...Ch. 2.4 - Write an if-else statement that outputs the word...Ch. 2.4 - Consider a quadratic expression, say x2 x 2...Ch. 2.4 - Consider the quadratic expression x2 4x + 3...Ch. 2.4 - What is the output of the following cout...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - What output would be produced in the previous...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - What is the most important difference between a...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - Write a complete C++ program that outputs the...Ch. 2.5 - The following if-else statement will compile and...Ch. 2.5 - Prob. 36STECh. 2.5 - Write a complete C++ program that asks the user...Ch. 2 - A metric ton is 35,273.92 ounces. Write a program...Ch. 2 - The Babylonian algorithm to compute the square...Ch. 2 - Many treadmills output the speed of the treadmill...Ch. 2 - Write a program that plays the game of Mad Lib....Ch. 2 - The following is a short program that computes the...Ch. 2 - A government research lab has concluded that an...Ch. 2 - Workers at a particular company have won a 7.6%...Ch. 2 - Modify your program from Programming Project 2 so...Ch. 2 - Negotiating a consumer loan is not always...Ch. 2 - Write a program that determines whether a meeting...Ch. 2 - Prob. 6PPCh. 2 - It is difficult to make a budget that spans...Ch. 2 - You have just purchased a stereo system that cost...Ch. 2 - Write a program that reads in ten whole numbers...Ch. 2 - Modify your program from Programming Project 9 so...Ch. 2 - Sound travels through air as a result of...Ch. 2 - Prob. 12PPCh. 2 - The HarrisBenedict equation estimates the number...Ch. 2 - Write a program that calculates the total grade...Ch. 2 - It is important to consider the effect of thermal...Ch. 2 - Prob. 16PP
Knowledge Booster
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
- Write a C++ program that reads several integer numbers input by the user and finds the smallest number. The user should first enter a value that specifies the number of integer values. Ex: n=910, 8, 4, 33, 6, 91, 44, 22, 89Smallest is 4arrow_forwardIn c++, write a unit conversion program that asks which unit to convert from and which unit to convert to. Reject incompatible conversions such as gal to km. Also ask for value to be converted and display answer. Here are the unit names: fl. oz, gal, oz, lb, in, ft, mi and ml, l, g, kg, mm, cm, m, kmarrow_forwardWrite a program in C++ that lets the user input an odd number of positive integers (space separated) on a single line. Assume each integer appears an even number of times in the input. However, the program should output the integer that does NOT occur an even number of times. Please make the program as simple as possible!! Example: Enter integers: 2 1 55 3 2 1 4 4 2 2 55 Exclusive: 3arrow_forward
- Write a C++ function that accepts a double typed number and return back the fractional part of the number. For example, if the number is 789.123, the number 0.123 should be returned.arrow_forwardWrite a program in C that asks the user to enter a number of seconds and works as follows:• There are 60 seconds in a minute. If the number of seconds entered by the user is greater than or equal to 60, the program should display the number of minutes in that many seconds. If there are leftover seconds they should be displayed also on a separate line.• There are 3,600 seconds in an hour. If the number of seconds entered by the user is greater than or equal to 3,600, the program should display the number of hours and minutes and leftover seconds in that many seconds.• There are 86,400 seconds in a day. If the number of seconds entered by the user is greater than or equal to 86,400, the program should display the number of days, hours and minutes and leftover seconds in that many seconds. Pay close attention to how the output is formatted in the example. If there are 0 days, hours, minutes or seconds that line should not be printed.arrow_forwardWrite a C++ Program using using classes, that, given a number greater than zero (0), the user will choose to calculate one of the following values: the fibonacci series up to that number, where any number in the sequence is the sum of the previous two numbers: F, = Fn-1+ Fn-2, where F, = 0; F = 1 the sum of the numbers up to that number, given by the equation: nx(n+1) 21 the inverse square series up to that number, given by the equation: (-) the Sum of alternating sign Squares up to that number, given by the equationZ-1W+1) x n² the Sum of the factorial to the power of the number, given by the equation: () Each option should have its own class. A class can call another class. Use a class to validate your input.arrow_forward
- PLEASE SOLVE THIS IN C++ CODE ONLY! PLEASE READ AND DO THE PROGRAM WITH ACCORDING TO THE CONDITIONS GIVEN. PLEASE ALSO WRITE THE USE OR FUNCTIONS OF EACH CODE USED BY INSERTING ITS USE EVERY LINE USING "//" A palindrome is a string that reads the same from front to back as it does from back to front, e.g., "racecar", "radar", "21012". Write a program that will identify whether a given line of input is a palindrome or not. Your program must also be able to determine the following sample inputs as palindromes, aside from identifying one-word inputs: Able was I 'ere I saw Elba. Madam, I'm Adam. A man, a plan, a canal, Panama. These samples require that your program must ignore spaces and punctuations, and consider uppercase and lowercase letters to be the same. Include necessary functions in your program to process the input. You can also use existing functions from the string library.arrow_forwardWrite a program in c that calculates the student grades’ average for a semester for the number of courses taken in that semester. Your program should do the following: Read from user the number of courses (n) Then, read the courses’ grades for n times (Hint: use a loop) If a grade is grater than 100 or less than 0, ask the user to enter the grade again. Calculate the average of grades using the following formula: average = (sum of grades) / n Print out the average grade on the screen. Note: Always use appropriate data types.arrow_forwardWrite a C++ program to calculate a rectangle's area. The program consists of the following function: getLength – This function should ask the user to enter the rectangle's length, and then returns that value as a double getWidth – This function should ask the user to enter the rectangle's width, and then returns that value as a double. getArea – This function should accept the rectangle's length and width as arguments and return the rectangle's area. • displayData – This function should accept the rectangle's length, width and area as arguments, and display them in an appropriate message on the screen. main – This function consists of calls to the above functions.arrow_forward
- Write a simple program in C++ that lets the user input a single integer n where 1 ≤ n ≤ 100000. The program should print the sum of the first n prime numbers. In the first example below, the first 5 prime numbers are 2, 3, 5, 7, and 11. Example #1: Enter integer: 5 Prime sum: 28 Example #2: Enter integer: 100000 Prime sum: 62260698721arrow_forwardIn C#, Compute the binomial expression (a+b)^2 using the following rubric: Write code for computing the formula (a+b)^2 which expands into the following expression. In your code •Compute squares of double type variables a and b. •Compute the product 2*a*b•Add the squares and the product together •Use Math.POW library to compute the squares of the variables a and b. •Other functional code.arrow_forwardWrite C++ program that input five digits integer, separates the integer into its individual digits and print the digits separated from one another by 2 spaces each.for example if the user type 54321 the program should return 5 4 3 2 1arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Algebraic Expressions – Algebra Basics; Author: TabletClass Math;https://www.youtube.com/watch?v=U-7nq7OG18s;License: Standard YouTube License, CC-BY
Python Tutorial for Beginners 3 - Basic Math, Mathematical Operators and Python Expressions; Author: ProgrammingKnowledge;https://www.youtube.com/watch?v=Os4gZUI1ZlM;License: Standard Youtube License