Write some Software

Dokončeno Zveřejněno před 7 lety K zaplacení v momentě doručení
Dokončeno K zaplacení v momentě doručení

I need a C program that builds on already existing code:

#include<stdio.h>

#include<stdlib.h>

//Taking the default size is 20 and if required it will be increased or decreased

int arraySize = 20;

//Taking the input from user and adjusting the arraySize based on number of inputs

void checkAndReallocateOnlyUsedLocations(double * arr , int count)

{

if(count < arraySize)

{

arr = realloc(arr , count * sizeof(double));

arraySize = count;

}

}

void takeInputGrades(double * arr)

{

double x = 0;

printf("Please enter gradres -1 to end: \n");

int count = 0;

while(x != -1.00)

{

scanf("%lf" , &x);

arr[count++] = x;

if(count == arraySize)

{

arraySize *= 2;

arr = realloc(arr,arraySize * sizeof(double));

}

}

checkAndReallocateOnlyUsedLocations(arr,count-1);

}

//Finding the average

double findAvg(double * arr)

{

int i = 0 ;

double sum = 0.0;

for(i = 0 ; i < arraySize ; i++)

{

sum += arr[i];

}

return (sum / arraySize);

}

//Finding the highest

double findHighest(double * arr)

{

double highest = arr[0];

int i = 0 ;

for(i = 1; i < arraySize ; i++ )

{

if(arr[i] > highest)

highest = arr[i];

}

return highest;

}

//Finding the lowest

double findLowest(double * arr)

{

double lowest = arr[0];

int i = 0 ;

for(i = 1; i < arraySize ; i++ )

{

if(arr[i] < lowest)

lowest = arr[i];

}

return lowest;

}

int main()

{

double * array = (double *) malloc(arraySize * sizeof(double));

takeInputGrades(array);

printf("Grades you entered: ");

int i = 0 ;

for(i = 0 ;i < arraySize ; i++)

{

printf("\n%.2f\n" , array[i]);

}

printf("\nAverage grade is : %.2f\n" , findAvg(array));

printf("Highest grade is : %.2f\n" , findHighest(array));

printf("Lowest grade is : %.2f\n" , findLowest(array));

free(array);

return 0;

}

The above code must be modified to use a custom struct to hold student's ID numbers and the percentage score for each item entered into the grade book. The program should accept the entry of ID numbers and percentage grades (0–100) until the user signals that he or she is done entering grades. The program should then print out the ID numbers and grades entered by the user, sorted by ID number.

PHP Softwarová architektura

Identifikační číslo projektu: #12027195

O projektu

8 nabídek Projekt na dálku Aktivní před 7 lety

Uděleno uživateli:

HafizShahan

hey i have done this program with you previously and can change now as you want you messaged me i can do it please come in inbox :-) regards

$25 USD za 1 den
(14 recenzí)
5.1

8 Freelnceři na tento projekt zveřejňují nabídky v průměru $22

crazynightwalker

Hi! I have 12 years of C and C++ experience. I checked your source code and requirements - I can complete this today, within the next few hours.

$20 USD za 1 den
(108 Recenzí)
5.8
raulbehl

Hello! Please check my reviews to know a bit about me and my work.

$20 USD za 1 den
(15 Recenzí)
3.9
raheelwaqar3

Hello Sir, Raheel here. I've done too many projects in C having great knowledge about it. I assure you that I'll deliver your project on time and you can also visit my profile for surety. I hope you will consider mA Další

$25 USD za 1 den
(8 Recenzí)
2.9
bmbmobile3

Hi, this is mahesh The project is still open.??? I have completed the job, could not send the file in chat window due to some error. Ping me in chat window i will forward u the c file.

$20 USD za 0 dní
(1 recenze)
1.5