1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
ehidna [41]
3 years ago
10

A basketball game has four quarters. Write a program to do the following. Use a for loop to input scores of team A and team B in

each of the four quarters. Every time a score is entered, update and display the current total score of that team. After all four quarters, compare the total scores of the two teams and display the outcome of the game (“Team A has won”, “Team B has won” or “It is a tie”)
Enter team A score in this quarter: 22
Team A score so far: 22
Enter team B score in this quarter: 24
Team B score so far: 24
Enter team A score in this quarter: 19
Team A score so far: 41
Enter team B score in this quarter: 26
Team B score so far: 50
Enter team A score in this quarter: 25
Team A score so far: 66
Enter team B score in this quarter: 22
Team B score so far: 72
Enter team A score in this quarter: 21
Team A score so far: 87
Enter team B score in this quarter: 20
Team B score so far: 92
Team B has won

Enter team A score in this quarter: 22
Team A score so far: 22
Enter team B score in this quarter: 20
Team B score so far: 20
Enter team A score in this quarter: 26
Team A score so far: 48
Enter team B score in this quarter: 21
Team B score so far: 41
Enter team A score in this quarter: 19
Team A score so far: 67
Enter team B score in this quarter: 28
Team B score so far: 69
Enter team A score in this quarter: 25
Team A score so far: 92
Enter team B score in this quarter: 23
Team B score so far: 92
It is a tie

Computers and Technology
1 answer:
Ronch [10]3 years ago
4 0

Answer:

The program in cpp for the given scenario is shown.

#include <iostream>

using namespace std;

int main()

{

   //variables declared to hold individual and total scores

   int score_a=0, a;

   int score_b=0, b;

   //user input taken for score

   for(int i=0; i<4; i++)

   {

       std::cout << "Enter team A score in quarter " <<(i+1)<<" : ";

       cin>>a;

       score_a = score_a+a;

       std::cout << "Team A score so far: "<< score_a <<std::endl;

       std::cout << "Enter team B score in quarter " <<(i+1)<<" : ";

       cin>>b;

       score_b = score_b+b;

       std::cout << "Team B score so far: "<< score_b <<std::endl;

   }

   //winner team decided by comparing scores

   if(score_a>score_b)

       std::cout << "Team A has won" << std::endl;

   if(score_a==score_b)

       std::cout << "It is a tie." << std::endl;

   if(score_a<score_b)

       std::cout << "Team B has won" << std::endl;

   //program ends

   return 0;

}

Explanation:

1. The integer variables are declared to hold both individual scores and the total score for both the teams.

   int score_a=0, a;

   int score_b=0, b;

2. The variables to hold total scores are initialized to 0.

3. Inside for loop, scores for both teams for all 4 quarters are taken from the user.

4. Inside the same for loop, a running total for the score of each team is computed and displayed.

score_a = score_a+a;

score_b = score_b+b;

5. Outside the loop, the total scores of both the teams are compared and the winner team is displayed. This is done using multiple if statements.

if(score_a>score_b)

       std::cout << "Team A has won" << std::endl;

   if(score_a==score_b)

       std::cout << "It is a tie." << std::endl;

   if(score_a<score_b)

       std::cout << "Team B has won" << std::endl;

6. After each message is displayed, a new line is inserted at the end using keyword, endl.

7. The program ends with a return statement.

8. The whole code is written inside main(). In cpp, it is not mandatory to write the code inside a class since cpp is not a purely object-oriented language.

9. The output is attached in an image.

You might be interested in
Which is an example of a correct citation for a website with an unknown author?
antiseptic1488 [7]
With no author on a website you should name the website.

for example As shown in " Slave Density"------ it didn't have a author so i used the nameof source
7 0
4 years ago
John just bought a used iPad from a friend who had lost the charging cable. John notices that the cable is like the charging cab
7nadin3 [17]

Answer:

an iphone charger

Explanation:

5 0
4 years ago
1. Which of the following is a search engine?
Effectus [21]
<span>C)Google
D) Search engines often provide different results, even when you enter the same query.
</span>
6 0
3 years ago
Read 2 more answers
Write a function named wordLineCount with the following input and output: Input: a string parameter, inFile, that is the name of
Galina-37 [17]

Answer:

def wordLineCount(file):

   dic = {}

   with open(file,'r') as file:

       

       text = file.read()

       text = text.strip().split()

       for word in text:

           if word in dic:

               dic[word] += 1

           else:

               dic[word] = 1

   return dic

print(wordLineCount('ben.txt'))

Explanation:

The programming language used is python.

The program starts by defining the function, an empty dictionary is created to hold the words and the number of times that they occur. the with key word is used to open the file, this allows the file to close automatically as soon as the operation on it is finished.

The data in the file is read to a variable text, it is striped from all punctuation and converted to a list of words.

A FOR loop and an if statement is used to iterate through every word in the list and checking if they are already in the dictionary. if the word is already contained in the dictionary, the number of occurrences increases by one. otherwise, it is added to the dictionary.

check the attachment to see code in action.

6 0
4 years ago
Which of the following help departments organize unique access controls for access to folders and data files within a department
never [62]

Answer:

B. Role-based access controls

Explanation:

Roll-based access control is a way to control access to the network and to data which depends on the position of employees in a department. This way the permission to access information are granted according to roles that are assigned to employees. This type of access control allows access privileges to employees only to the folders and data files which they need in order to perform their tasks and it does not allow them to access the data or information which is not relevant to them. This helps the department to secure the sensitive information and data files and reduces the risk of data breaches.

6 0
3 years ago
Other questions:
  • What impacts the types of logs and events logged on a server?
    14·1 answer
  • Why is Bot_Seth Trash at video games?
    13·2 answers
  • (TELL ME WHY PLEASE!! THANK YOU!!)
    9·2 answers
  • What is the first thing you should do before constructing a window in the IDE?
    14·1 answer
  • Which carrier sense technology is used on wireless networks to reduce collisions?
    7·1 answer
  • A(n) ____ occurs when a situation results in service disruptions for weeks or months, requiring a government to declare a state
    6·1 answer
  • Astrid's computer screen suddenly says that all files are now locked until money is transferred to a specific account, at which
    11·1 answer
  • Amanda needs to create an informative print brochure for her local library’s fundraiser dinner. What critical detail must she ha
    9·1 answer
  • Who is the founded the java computer language?​
    5·1 answer
  • Which two features could be added to a game using an "if () then " block
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!