1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
#include<stdio.h>
void RunAllParts(int votes[5][4])
{
int i = 0, j = 0;
printf(" \t\tCandidate\tCandidate\tCandidate\tCandidate\n");
printf("Precinct\t A\t\t B\t\t C\t\t D\n");
for (i = 0; i < 5; i++)
{
for (j = 0; j < 4; j++)
{
if (j == 0)
printf("%d\t\t", i + 1);
printf("%d\t\t", votes[i][j]);
}
printf("\n");
}
printf("\n\n************************************************************************\n");
int sum[6] = { 0 }, cumalativeSum = 0;
char candidateName[] = "ABCD";
for (i = 0; i < 4; i++)
{
for (j = 0; j < 5; j++)
{
sum[i] += votes[j][i];
cumalativeSum += votes[j][i];
}
}
j = 0;
for (i = 0; i < 4; i++)
{
printf("\nTotal votes of Candidate %c is %4d and Percentage is %5.2f%%", candidateName[j++], sum[i], (float) sum[i] / cumalativeSum * 100.0);
}
int maxValueIndices[2] = { 4, 5};
printf("\n\n************************************************************************\n");
int winnerFound = 0;
float per = 0.0;
for (i = 0; i < 4; i++)
{
per = (float) sum[i] / cumalativeSum;
if (per > 0.5)
{
printf("\nCandidate %c is a winner having percentage %.2f", candidateName[i], per);
winnerFound = 1;
}
if (sum[i] > sum[maxValueIndices[0]])
{
maxValueIndices[1] = maxValueIndices[0];
maxValueIndices[0] = i;
}
else if (sum[i] > sum[maxValueIndices[1]] && sum[i] != sum[maxValueIndices[0]])
{
maxValueIndices[1] = i;
}
}
if (winnerFound == 0)
{
printf("\nCandidate %c got the Highest votes %d", candidateName[maxValueIndices[0]], sum[maxValueIndices[0]]);
printf("\nCandidate %c got the Second Highest votes %d", candidateName[maxValueIndices[1]], sum[maxValueIndices[1]]);
}
}
int main()
{
int votes[5][4] =
{
{192,48,206,37},
{147,90,312,21},
{186,12,121,38},
{114,21,408,39},
{267,13,382,29}
};
RunAllParts(votes);
printf("\n\n************************************************************************\n");
printf("\nRunning Code with candidate C receiving only 108 votes\n\n");
int Newvotes[5][4] =
{
{192,48,206,37},
{147,90,312,21},
{186,12,121,38},
{114,21,408,39},
{267,13,382,29}
};
RunAllParts(Newvotes);
return 0; // <--- May or may not be required in a C program, but makes a good break point for testing.
}
|