Best writers. Best papers. Let professionals take care of your academic papers

Order a similar paper and get 15% discount on your first order with us
Use the following coupon "FIRST15"
ORDER NOW

Please Help!2. Modify the program to add a function to compute

Please Help!<br/>2. Modify the program to add a function to compute

and display the total sales for all the concerts. Support your experimentation with screen captures of executing the new code.
#include &lt;stdio.h&gt;
#define MAXN 100 // max characters in a group/concert name
#define MAXG 5 // max concerts/groups
#define MAXC  3 // max categories
char group [MAXG][MAXN];
int  fans  [MAXG][MAXC];
float prices [MAXC];
float sales [MAXG];
int  count = 0;
void printArray () {
printf (“%15s%5s%5s%5s%10s\n”,
“Concert”, “s1”, “s2”, “s3”, “Sales”);
for (int i = 0; i &lt; count; i++) {
printf (“%15s”, group [i]);
for (int j = 0; j &lt; MAXC; j++) {
printf (“%5d”, fans[i][j]);
} // end for each category
printf (“%10.2f\n”, sales [i]);
} // end for each group
} // end function printArray
void computeSales () {
for (int i = 0; i &lt; count; i++) {
sales [i] = 0;
for (int j = 0; j &lt; MAXC; j++) {
sales [i] += prices [j] * fans [i][j];
} // end for each category
} // end for each group
} // end function computeSales
void switchRows (int m, int n) {
char tc;
int ti;
float v;
// printf (“Switching %d with %d\n”, m, n);
for (int i = 0; i &lt; MAXN; i++) {
tc = group [m][i];
group [m][i] = group [n][i];
group [n][i] = tc;
} // end for each character in a group name
for (int i = 0; i &lt; MAXC; i++) {
ti = fans [m][i];
fans [m][i] = fans [n][i];
fans [n][i] = ti;
} // end for each fan category
v = sales [m];
sales [m] = sales [n];
sales [n] = v;
} // end switch
int findMinSales (int m) {
float min = sales [m];
int target = m;
for (int i = m+1; i &lt; count; i++)
if (sales [i] &lt; min) {
min = sales [i];
target = i;
} // end new max found
return target;
} // end function findMinSales
void sortBySales () {
int target;
for (int i = 0; i &lt; count; i++) {
target = findMinSales (i);
if (target &gt; i)
switchRows (i, target);
} // for each concert
} // end function sortBySales
void getData () {
int i, j;
// for (int i = 0; i &lt; MAXG; i++) sales [i] = 0;
printf (“Enter ticket prices in each of %d cateogories: “, MAXC);
printf(“\n begin entry below …”);
for (int i = 0; i &lt; MAXC; i++){
printf(“\n enter ticket price %d, of %d “,i+1,MAXC);
scanf (“%f”, &amp;prices [i]);
}
printf (“– Enter group name and ticket sales in each of the %d categories\n”, MAXC);
printf (”  . to finish entries:\n”);
for (int i = 0; i &lt; MAXG; i++) {
printf(“\n Enter group name “);
scanf (“%s”, &amp;group[i]);
if (group [i][0] == ‘.’)
break;
count++;
for (int j = 0; j &lt; MAXC; j++){
printf (“\n Enter the number of fans buying at ticket price %d “,j+1);
scanf (“%d”, &amp;fans[i][j]);
}
} // end for each group
} // end function getData
int main(void) {
getData ();
computeSales ();
printArray ();
printf (“\n — Sorted —\n”);
sortBySales ();
printArray ();
printf(“… bye …\n”);
return 0;
}

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"