Answer:
The total cost is $13.0
Explanation:
Five Star Retro Video rents VHS tapes and DVDs to the same connoisseurs who like to buy LP record albums. The store rents new videos for $3.00 a night, and oldies for $2.00 a night.
Write a program that the clerks at Five Star Retro Video can use to calculate the total charge for a customer's video rentals.
The program should prompt the user for the number of each type of video and output the total cost.
A value proposition<span> is a business or marketing </span>statement<span> that a company uses to summarize why a consumer should buy a product or use a service. </span>
Answer:
i like ghost and modern 3
Explanation:
Answer: b) Nintendo, Game Boy
In 1989, the first handheld console was released by _Nintendo_ and it was called _Game Boy_.
Answer:
- #include <iostream>
- using namespace std;
- int main()
- {
- int highest = 0;
- int score;
- do{
- cout<<"Input a score: ";
- cin>>score;
-
- if(score > highest){
- highest = score;
- }
- }while(score >= 0);
-
- cout<<highest;
- return 0;
- }
Explanation:
Firstly, create a variable highest and initialize it with zero (Line 5). Next, create a do while loop (Line 7 - 14). Within the loop prompt user to input a score (Line 8-9) and if the current score is higher than the highest variable, assign the score to highest variable (Line 11 - 13).
After finishing the loop when user put in any negative value, the program shall be able to print out the highest input score (Line 16).