Write a C++ program called Winner.cpp for the hackathon competition, the program must do the following: 1.1 Declare all necessary variable and constants. 1.2 Declare a parallel array named candidate and initialize it using the information given above. 1.3 Declare four parallel arrays named judge1Score, judge2Score, percScore, totalScore and initialize them using default values as indicated above. 1.4 Populate the judge 1 score array with random numbers from 1 to 100. 1.5 Populate the judge 2 score array by allowing the user to enter the judge’s score . 1.6 Calculate the total score per candidate and store the results in the correct array. 1.7 Calculate the total for all the candidates’ scores. 1.8 Calculate the percentage for all votes for each candidate and store the results in the correct array. 1.9 Display the competition details . 1.2. 1.10Determine the candidate with highest percentage and display the candidate as well as the highest percentage
#include<upstream>
using namespace std;
int i, j, n;
string candidate [20];
int judge1Score[100];
int judge2Score[100];
cout<<"Enter candidate's name";
getline(cin, name);
cout<<"Enter judge1Score";
for(i=1; i<=100;i++)
{
cin>>judge1Score[i];
}
cout<<"Enter judge2Score size";
cin>>n;
cout<<"Enter judge2Score";
for(j=1; j<=100;j++)
{
cin>>judge2Score[i];
}
cout<<"CANDIDATE SCORE";
for(i=1; i<=100;i++)
{
for(j=1; i<=n;i++)
{
total[3]=judge1Score[i]+judge2Score[i];
}
}
cout<<"COMPETITION DETAILS";
cout<<"Candidate's name"<<candidate [i];
cout<<"Total score"<<total[i];
return 0;
}
Comments
Leave a comment