Answer:
Following are the statement in the C++ Programming Language.
//check condition that score1 is greater than score2
if (score1 > score2)
{//print the message and brake line
cout << "player1 wins" << endl;
//increment in the variable by 1
++player1Wins;
//increment in the variable by 1
++player2Losses;
}
//check condition when score2 is greater than score1
else if (score2 > score1)
{
//print the message and brake line
cout << "player2 wins" << endl;
//increment in the variable by 1
++player2Wins;
//increment in the variable by 1
++player1Losses;
}
//otherwise
else
{
//print the message and brake line
cout << "tie" << endl;
//increment in the variable by 1
++tieCount;
}
Explanation:
<u>Following are the description of the program</u>.
- In the statement, we check that the variable 'score1' is greater than 'score2' then, print message and brake line, then increment in the variables by 1 that is 'player1Wins' and 'player2Losses'.
- Again check that the variable 'score2' is greater than 'score1' then, print message and brake line, then increment in the variables by 1 that is 'player2Wins' and 'player1Losses'.
- Otherwise, print the following message and break line then, increment in the variable 'tieCount'
I did some research and I found this but I don’t think it helped When the drawing status bar is turned on it displays at the bottom of the drawing area. When the drawing status bar is turned off, the tools found on the drawing status bar are moved to the application status bar.
When the drawing status bar is turned on, you can use the Infobar menu to choose which tools display in status bar.
Time management,they wouldn’t have enough time to read it and they would become more stressed out
Continuing advances in technology and automation will be eliminating repetitive work in the offices of the future.
Computer technology has had a tremendous impact upon workers. In some instances, the introduction of computers has improved member working conditions, but, in others, new technology has produced several detrimental effects.
Explanation:
- One of the key trends to emerge was that automation, smart machines and artificial intelligence will conduct repetitive work, replacing the need for people to complete these tasks.
- Instead of worrying about job losses, executives should be helping to reduce jobs in which AI and machine learning take over boring tasks, while humans spend more time with higher-level tasks.
Here are three ways eliminating repetitive work can boost productivity:
- <u> Reduce Dependency on Email and Spreadsheets :</u> Automation tools such as mobile applications, customized portals and project management tools eliminate the time spent checking and responding to emails and updating spreadsheets to reflect work progress. With automated tools, managers and their teams can post progress or project information on an integrated mobile app.
- <u>Reduce Mistakes and Injuries </u>: The possibility of human errors, which take more time to correct, is virtually eliminated when tasks are automated. Leaving the monotonous tasks to machines reduces the chance of injuries and allows workers to keep working on more strategic tasks.
- <u> Free Employees Time for High-Level Skills</u> : Many of the employees who spend their time undertaking repetitive tasks could actually be better utilized on more complex tasks.
There are a variety of illnesses that may be caused by repetitive computer work :
-
Tendonitis : pain and swelling of tendons at the junction between the tendon and its muscle;
- Epicondylitis: pain and swelling where the tendons and bone join around the elbow joint, etc
Facilitate team development for successful project completion. Through coaching and mentoring, provide teammates with technical leadership.
Establishing best practices and habits will help the team maintain high standards for the quality of its software. Identify and promote the team's potential development and improvement areas.
#include<iostream>
using namespace std;
/*C++ Function to print leaders in an array */
void printLeaders(int arr[], int size)
{
for (int i = 0; i < size; i++)
{
int j;
for (j = i+1; j < size; j++)
{
if (arr[i] <=arr[j])
break;
}
if (j == size) // the loop didn't break
cout << arr[i] << " ";
}
}
/* Driver program to test above function */
int main()
{
int arr[] = {16, 17, 4, 3, 5, 2};
int n = sizeof(arr)/sizeof(arr[0]);
printLeaders(arr, n);
return 0;
}
Learn more about Development here-
brainly.com/question/28011228
#SPJ4