0 like 0 dislike
1.5k views

Write a program with following requirements:

  • Define the structure type student with fields: name, code, and grade.
  • Write a function to sort the structures in grade ascending order and another function to display the data of the students who got a higher grade than the average grade of all students. If there is only 1 student in the list, display the data of that student.
  • Write a program that uses this type to read the data of 100 students and store them in an array of such structures. If the user enters the grade −1, the insertion of student data should terminate. Then print the data of the students who got a higher grade than the average grade of all students. 

 Example input:

Edgar
20161123
78
Robert
20161523
75
Rebecca
20166123
66
Todd
20161673
86
End
1
-1

Example output:

Students who got a higher grade than the average grade of all students:
Name: Edgar
Code: 20161123
Grade: 78
Name: Todd
Code: 20161673
Grade: 86

 

[Exam] asked in Midterm
ID: 23789 - Available when: Unlimited - Due to: Unlimited

reshown by | 1.5k views

70 Answers

0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<string.h>

#include<ctype.h>

int main(void)

{
** * ** ** * ** * *
** ** * ** * ** ** ** name[10];
* *** ** * * ** *** ** * id;
* *** * *** * * * * ** grade;
* ** * * ** * * *


** * * ** *** ** * ** i, sum=0, average, end;


********* ***** ** * ** ***** *** * *
* * * ***** * *** * ** ** * ** * * * *** *** * * * * * *
* ** ***** * * ** * * **** ** ******** * * * ****** * &student[i].id);
** **** * * * ** ** ** ** *** ** * **** ** *** * * ** ** &student[i].grade);
* * *** * * ** * * * * ** *** * * * **** * * ** * * * **
** ****** * * * * * * ***** * * * *** * ** * ** *** * * * ****
* * * ****** * * ** * *** ** * * * * * ******** *
**** *** ** * * **** * **** * ** * * ** * * *** * * * ***
*** **** ** ** ****
*** ** ** * * * ** *
** * * ** * ** *** ***** * * ***
* **** **** ** **** * * ** * * ** ** who got a higher grade than the average grade of all students:");
** **** * *** * ** * ***** ** * * **
** * * * ** *** *** * * * ** ****** *** * * * ** * **
* *** * * * * * * * * * *** * ** * * * * * ** ** *** * *** ** * ** ***** ** ****** ***** student[i].name, student[i].id, student[i].grade);
* ** ******** *** **** * ** ** * * ***** * *

    }

}
answered by (-368 points)
0 like 0 dislike
Hidden content!
* * ** * *** **



struct students

{
***** * ** ******** ** * name[10];
*********** ***** ** code;
* * ***** * ** * * ******* grade;

};



void sort(int k, struct students s[])

{

int i,j;

struct students s1;



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

{
* * ** * *** * *** ** *** *
*** * ***** * ** *** * **
** * **** * ** * ** ** * *** * ** * *** * **** * * * * * ** *
* **** ** **** * ** ** * *** * ** ** *
* * * **** ** * * *** * * * * ** * * * ** *** * * * * **** * * ** * * *
******* ** * ** * * * *** ** * ***** * * * * *** *** * * *** *
* ** ***** *** *** * * * ****** *** * * * *** ** ** * * **
* * * ** **** **** * * ***** * * ** **
** * *** ** * *** * *

}

}





int main()

{

struct students s[100];

int i,k,aver,sum=0;


*** * * *** * * ***

{
** * * ** *** * ** ******* *** ** * * * ***
*** ** ** * * ** * ** ** * * *** * * * *
**** * * * * ****** * **** *** * ********


* ***** ***** ** * * * *
***** * *** ** *
** **** * * * * * *** ****** * * * ***** * * ****
*** * **** ** *** * *** * ******* ***** * *
* ** * ** ** * * ** * *

}

sort(k,s);

for(i=0;i<=k;i++)
* * * *** * ** * *
* ** ***** *** * **** *** * * * ** * ** (s[i].grade>-1) sum=sum+s[i].grade;
** ******* *** * * ** * * * *** *** *** **** *** ** %d\n",sum);

}

aver=sum/k;


* *** ** * *** ***** * ****

printf("Students who got a higher grade than the average grade of all students:");



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

{
***** ** * * * ** ** * * *
*** ** * ** * * * * * * **
* *** * * **** *** ********* ** ** * * * **** ** * * %s\n",s[i].name);
* **** * ** * ** * ** * * * ** *** * **** * ** * *** * ** ** ***** ** **
* * * ****** **** * ** * * **** * ** * ** ** ** * * ** %d",s[i].grade);
* * * * *** ** **** **

}



}
answered by (-226 points)
0 like 0 dislike
Hidden content!
** * * ***



struct students

{
* * *** **** * ****** ** ** name[10];
* *** ** * * * * ** code;
** *** * *** ** ** grade;

};



void sort(int k, struct students s[])

{

int i,j;

struct students s1;



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

{
* *** * ** *** *** * * ** ****
** * **** ** * * ***
****** *** * ** * ***** * ** ** **** * * * * * * ****** * * * **
* * *** *** * *** ** ** ******* * *** * **
* * * *** ** * * * * * ******* * * * * ** *** * * * ** *** ** *
*** * ** * ** * **** * *** ** * * **** ** * ** ******* * *** * *** ** ** *
*** ** * ** ** * *** ** * **** ** ***** ** ** ** * * ** * * *
* ** **** ** ** ** * *** * * ** *** *** * **
** * **** ** * *** **

}

}



int average(int k,struct students s[])

{
**** ** *** ** ** * i,sum=0,aver;


* * *** ** ** * * * *
*** ****** *** * ***** ** aver;

}







int main()

{

struct students s[100];

int i,k,aver,sum=0;


* * **** ** ***

{
***** ** * * ** * **** * * * ** * * ***
* * *** * *** * * * * *** * *** ** ** * *
* ** ** * ** **** ** * *** ** ** * * * * * *


** *** ** ** *** * * * **
* ** ** ** ** ****** * *
******** * *** * * * * * ** * * * * * *** ****
* * ***** * ** ** ** *** * ** ** * * * * ** * *
* ** **** ****

}

sort(k,s);

for(i=1;i<=k;i++)
** *** *** * * * *** ***
* * ** * *** ** ** * **** * ** ** ** * * * ** ** ** ***
* * * ** ** * * *** *** * * * *** * * * * ** %d\n",sum);
* ****** ** ** *
*** * ** * *** * ** **


*** * * ** * * ***** *

printf("Students who got a higher grade than the average grade of all students:");



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

{
***** ** * ** * ** * * * *** * *
*** *** * *** * ** *
* * * * ******* *** ** * * ** * * * * * * * * *** ** %s\n",s[i].name);
* * ** ** ** * ** * ******* **** * * ** * ****** *** %d\n",s[i].code);
* * ** * * * *** * ** * * ******* ******** * * *** %d",s[i].grade);
*** * * * * * * ** *

}



}
answered by (-226 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <string.h>



struct student{
** ** * * ** ** code[100],grade[100];
* ** * * * * *** *** **** name[100][100];

};



int main()

{
* * * * * * * * ** ** sum=0;
* * * * * * * ******* ** * i, j;
* *** ** * * * * * * * student stu1;


** **** * **** * * * ** ***** *
* *** * *** **** * ** * * *** * ***** * * ** *** ****** * *** ** %d * * * *** ** ******* ** * * *** ** ****
* * * * * * ** **** * * ** * *** * ** ** * * * * * * * ** == -1)
*** * *** **** * *** * * ** * *** ** *** ** * ** * * ****** *
*** **** *** ** * ********** * * * ** ** *** ** ** ******
* ** * *** *
**** *** ***** * * *** /= (float)i;
** **** ** * * *** * * *** ** *** who got a higher grade than the average grade of all students:\n");
** *** ** * ** **** * *
*** * *** ** *** * * *** * * ****** ** * ** ** * * * * >= sum){
** ****** * * * **** ** ** ****** ** ******* * ** ***** * *** * *** * *** * %s\n",stu1.name[j]);
**** * ** * * *** *** ******* ** ** * ** * * * *** * * * * * * *** ** ***** ** ***** ** * %d\n",stu1.code[j]);
*** *** * *** * * ** *** ** ** *** *** * * ** ** ** * ** *** * ** *** *** ** %d\n",stu1.grade[j]);


* * *** *** ** * ** * **** ****** * * **
* * * *** **** ** *** *



}
answered by (-298 points)
0 like 0 dislike
Hidden content!
* * * *



struct students

{
** * ** * ** *** * name[10];
* ***** * * * ** * *** * code;
******* * * * grade;

};



void sort(int k, struct students s[])

{

int i,j;

struct students s1;



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

{
** ** *** * * * * * ** * ** *** *** **
** * **** * * *** * * **
* * * ***** ** ** * * ** * * * * * ***** *** ** * **
* *** ** * * **** ** * ** * ****** * ** ** * * *
* * ** ******* ** *** * * * **** ** * * * * ***** * ** * ** * * * ** * * **
*** ** *** ** ** ** ***** ******* *** *** ***** * * *** * * * * ** ** ** *** ** *
****** *** * * ** **** ** * ** *** * *** * * *** *** * * * * ** *
* * * * ** * * **** * *** * *** * * *
** * ** * ** * *

}

}



int average(int k,struct students s[])

{
* * * *** **** *** ** *** i,sum=0,aver;


* * ** ** * * *** *** ** * * ******
*** ** ** * ****** ***
* * ** * *** * *** ** **** ***** * *** * *** * *
* *** * ***** * ** * * * *** * * ** *** * * * * %d\n",sum);
*** ** ******* ***** *
* * ******* ***** *** * * **
* * ** * * * * *** **** aver;

}







int main()

{

struct students s[100];

int i,k,aver;



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

{
* **** * ** ** * ** * * * ** * ** ** *
**** ** * * * ** ***** ** * * * *** *
** **** *** * ** * * ** * ** * *** * * ****


* * *** * *** * ** *****
***** **** ***** * * * *
**** * ****** **** *** * ** **** * * ** * *
** * * *** ***** *** * ** ** * * * ****
** ** *** ** ** * ** **

}

sort(k,s);

aver=average(k+1,s);
** * ** * ** *** * ****

printf("Students who got a higher grade than the average grade of all students:");



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

{
*** * *** ** * *** * ** *
* **** ***** * * * ***** *
*** *** * **** *** ******* * * * * ****** ** ****** *** *** %s\n",s[i].name);
* * ** * * ** * * * *** * * * *** *** ** ** * * ***** %d\n",s[i].code);
** **** * *** ** * ** ** * *** ** * * * * ********** *** %d",s[i].grade);
* *** * * ** * ** * *

}



}
answered by (-226 points)
0 like 0 dislike
Hidden content!
* ** *** ***** * * *



struct students

{
* ** ** * *** ** ** name[10];
* * *** *** **** * * **** * *** code;
** ** ** *** ** grade;

};



void sort(int k, struct students s[])

{

int i,j;

struct students s1;



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

{
*** * * * * * * ** *** **
**** * ***** ** * ** *
****** * *** * ** * **** * **** ***** ** * ** ** ** * * *** ***
** ** * ** ** ****** *** * * * * *** *
** * * * **** * **** * * * * **** * * * * *** * * *** * *
* ***** ** * ** * ** * * ** ** * ***** ** * ** * ** ** ** ** *
* * ** **** ** ** *** ** * * ** * * *** * ** **** * * *** *** ***** * **** *
** ** **** * * *** * * *** ** ** * *** ***** *
* * **** * * ***** **** **

}

}



int average(int k,struct students s[])

{
* *** * ** *** ** i,sum=0,aver;


** ** * ** ***** **** **** * *** *** **
* * * **** ** **
* ********* * * * **** ******* * * ** ** ** * * * *
** * ** ** ** * * * * *** * *** * *** %d\n",sum);
*** ** *** *** * ** * *****
**** *** * * **** * ***
* * ** * ******* **** aver;

}







int main()

{

struct students s[100];

int i,k,aver;



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

{
* ** ****** **** ** *** ** * ** ** ** * ***
*** * * * ** ** * * *** ***** * * * * * *
* ** * * * * * * * * ** * * *** * *


* ****** * ** ** ** * ** **
*** **** **** **
*** * ** ** * * ** **** ** ** ** *** * * *** *
* *** * **** * * ** **** * ** * * ** * * *** **
* * ******* ** * **** * *

}

sort(k,s);

aver=average(k,s);
**** ** ** ** **** * * ****

printf("Students who got a higher grade than the average grade of all students:");



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

{
**** ** ** ** **** * * **** * **
* * ** *** * ***
** ** ** * * *** * * ******* * * ** **** * * ** ** * * %s\n",s[i].name);
* * * * * * * ** ** **** * * * **** * *** *** ** %d\n",s[i].code);
** * * *** *** * ***** ** * * * * * * ** * ** * * ** *** %d",s[i].grade);
** ** * * * ** * ***** **

}



}
answered by (-226 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<string.h>



struct inform{

char name[20];

int code;

int grade;

};



void bubble(struct inform stu[],int n);

void sort(struct inform stu[],int n);



int main(void)

{
*** * *** *** ** * ** *** inform stu[100];
* ** * * *** * * * * * ** n=0;


** * *** * ** * ** * ** ***** ** ** ** *
*** * **** *** ***** * * * * * **** ** *** *** **
** * * *** *** * * *** * ** ** * *** **** ** * ** **
** ** ** *** ** * * * * ** ******* * ** *
******* *** ****
* **** * ** * *** *** *** ***** * ** * **
* *** ** * * * * * ** * * *** ** ** ** *** **
* ** * * ** * *** *** ** * * *** *** ** * **** * **** * * ** *
** *** ** ** * ** **** *** * ** * ** * * ** *** ** * * * * * * * *

    }
*** ** * * ** * * * *** ** *
**** *** * * * * ** * **** *
*** ** ** * *** * * ** ** * 0;

}



void bubble(struct inform stu[],int n)

{
** * * * ********** * inform QQ={"0"};
** * * *** **** ** i,j;


* * ***** * ** * **** * ***** *
** *** * ** ** * *
** ** ***** **** * * ** ** *** * * * ** * * **** * * * * *
*** * * **** * * * * *** **** *** ***** * **
*** * * ** * ** ** ************* * * ***** * * ** *** ******* * **** * * * * ***
** * *** * * * * *** * ** * * ** * **** * ** *** *** * **
**** *** **** * * *** * ** * *** ** * ** * **** * * *** *** * * *** * * * * * * ** *
** * * ** * * ** * * * **** * ** *** ** * * * * ****** * * ***** *** * * * * *** ** ** ** * ** * * ***** **
** * * * * **** * **** **** * * ** **** * ******** * *** *** ** ** * ** **** ** ** * **** * *
** ** *** * * * **** * ** ** * * *** * ** ** ** **
* * * *** * * * * * *** * * * * * ** * * *

    }

}

void sort(struct inform stu[],int n)

{
* * * ** **** ** * * ave,sum;
** ** *** **** ** * i;
* ** * *** ** *** ** * * ** * ** * *

    {
*** * *** * * ** *** * ** *** * ** **** ***** *** *

    }


** **** **** *** ** * * * **
* * * *** * ** * * ** * who got a higher grade than the average grade of all students:\n");
* * * ** ** ** ***** * *** ** *

    {
* * * **** * ** * ** * * ** *** * * * * * *
* *** *** ** ** * **** * * ** ** * **
* * * * * *** * ** * **** *** *** *** ** * ** * ** * ***** ** * * * *** * *** * %s\n",stu[i].name);
** *** * * *** * ** ** ** * * *** *** ** *** ** * * **** * * * * %d\n",stu[i].code);
***** * *** *** ** ** * * *** *** * * * * * * ** * * *** *** * * %d\n",stu[i].grade);
* ***** * ** * ** ** ** * * * * *

    }

}
answered by (-412 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>

#include <string.h>



struct data

{
* ** ** * ** * * ** * * name[20];
** * * * *** ***** code;
** ** ** * * ** grade;

};



void compare(int num, struct data a[])

{
* * * * ** * * i,j;
** ** **** *** * * * * ** * data temp;


******* ** **** *** * * (i=0; i<num; i++)
* * * * *** * * * *** *
* * ** * ***** ** ** * * *** * *** *** ** * ** * *** (j=0; j<num; j++)
* * ***** **** * * ** * * ** **
* * ** ** *** *** *** ** * ****** * ** * * * ** *** ***** * *** * ***** (a[i].grade<a[j].grade)
*** *** ****** * * *** * **** * * ** ** * **** * * * ** * * * *
* * * *** *** **** *** *** *** ****** *** * ** * ** ** * * ** * * ** * ** * ** = a[i];
******* *** * * * * ** * * *** ** * *** ** ** * *** * * * ***** *** ** * * * *** ** ** = a[j];
* *** **** * * * **** ** * *** ** * ** * ***** ** ******** **** * ** * * * * * * **** * = temp;
* *** ** * **** ***** * *** * * *** * * ** *** ***** *
** ***** ** * * * *** * * * * * *
****** * * ****** *

}



int average(int num, struct data a[])

{
*** ** ** ** ** * ** * i,sum=0,ave;


* * ** * * **** (i=0; i<num; i++)
* *** * ** * * **
* ** * ********* * ** ***** * *** ** **** * * ******* += a[i].grade;
*** ** ** * * **
** * * *** * ** * ** = sum/num;


** * * ** *** * * * *** ** * * who got a higher grade than the average grade of all students:\n");
* * ** ** * * * * **** ** (i=0; i<num; i++)
** ****** *** * * *** *
*** * *** * * * *** ** ** *** * *** * ** ** * (a[i].grade>ave)
* **** ** * * ****** * * **** * * * ** *
*** ** ** ** * ** * ** * * *** ********* *** *** **** * ** * * ** * * %s\n",a[i].name);
** *** ******* * * ** * * **** * **** **** *** * *** *** *** * ** * * * * ** %d\n",a[i].code);
* ** * * **** ** ** ** **** ** * ** ** * * **** * *** * * * ****** **** ***** * %d\n",a[i].grade);
** * * * * *** * ** *** * ** ** *** * ******

    }
* * * * * ***** * ** * 0;

}



int main()

{
* ** * ** * **** * ** * data Student[100];
* * ***** * *** * i,num=0;


* * ** * * * ** (i=0; i<100; i++)

    {
** ***** * * **** *** * * ** * * * ** ****** * ** * * **
* * ** * * * ** ** * * ** ** ** * ** * * * * * * ** ****** * * * * * *** **
* ** * ** * ** * ** ** * * * * * ****** * * *** ** ******* * *** ***** ** *
** * * ** * * * ** * * ** **** ** * ** ** ** (Student[i].grade == -1)
* ** * * *** * * ** * ***** *** * ** ****
* * ****** ** * *** * * *** * ** * *** *** ****** **** ** * * *
* **** * *** * ** * ** * * *** *
** *** * ** *** * * ** ** ** ***** * ** ** *

    }
* * * ** ** * *** * * ******
** * ** * ** * ** * * *** * *
*** ** ** * * ** *** **** * 0;

}
answered by (-190 points)
0 like 0 dislike
Hidden content!
* * * * * * ** * ***



struct students

{
** ** ** * * * * * ***** name[10];
* ** * * * ** * *** * * code;
* * ** * ** * * grade;

};



void sort(int k, struct students s[])

{

int i,j;

struct students s1;



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

{
** * ******** * ***** ** * * * *
* ** * * *** *** **
* * * * * * * ** ** ** ** * ** *** * * * ** *** ** * **
* * * * **** * * * *** * ** * *
*** ** **** ** ** * * * * * * * * ***** * ** * * **** ***** * * * **
* ** * ** ** ** ** *** ***** * * * * ****** * **** * ** ** *** *
** ** ** * * ****** * * * ** *** *** **** * * * ** * * **
*** * ******** *** * * ** ** ** * *
**** ***** *** * ** ** *

}

}



int average(int k,struct students s[])

{
* * ** * ** * * * * i,sum=0,aver;


* * **** * **** ** * ** *
** **** * * * * * *
* ***** ** ***** **** *** ** **** * *** * *
* * * * ** ** **** * * ** * ** ** * *** ***** *** * * %d\n",sum);
*** ** * ** *****
* * * *** * * * * * * * *
* * * * * * *** * ** * aver;

}







int main()

{

struct students s[100];

int i,k,aver;



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

{
* * * * *** * * *** ** ** ** ****** *** *** *********
*** ** ** * * ** ****** *** * ***** *** ** * *
** **** **** ****** * * ** * ** **** ** *** *


* * *** ** ****** ** * * * ******
* * * ** *** * * ***
** * * * * * *** ** * * * *** ** * ** * *
* *** * * *** *** ******* ** *** * * ** **
* ** ** * ** *** *

}

sort(k,s);

aver=average(k,s);
** * ** ** *** * **** *

printf("Students who got a higher grade than the average grade of all students:");



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

{
* *** ** * * **** ** * * * * * *** ***** **
* ** * **** * *****
***** * *** **** ** ** * * ** * ***** * * ** ** ** * %s\n",s[i].name);
*** *** ** * * ** ** **** * ***** ** *** * * **** ** * %d\n",s[i].code);
* * ** **** * ** ** ** ** ***** * ** **** ****** **** ** %d",s[i].grade);
** ** ** ** * ** * *

}



}
answered by (-226 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>



struct students

{
* * ** * *** ** * ** * name[10];
* **** * * * ** ** * code;
* * * * ** *** grade;

};



void sort(int k, struct students s[])

{

int i,j;

struct students s1;



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

{
**** *** * * * * ** *
** * ** * * * * *******
* * * * *** ***** ** * * * ** * ***** ** * ** ** ** *****
* * * ** *** *** ** * * ** * ** ** ** * * ** * *
* * ** ****** * *** * *** ** * * * * *** * * *** * ** * **
* * * * * * ** * * *** * ** *** * * * ** *** * * * * **** ** ***
** * * *** * *** ** ****** * ** * * * * *** ** * ** ****** * *
***** ** ** *** * ** *** ** *** ** * * ** *
* * * * ** *******

}

}



int average(int k,struct students s[])

{
* * * *** * * * ** i,sum=0,aver;


* * * *** * ** ***** *****
* **** ** * * ** * *
*** * * * * ***** ** * ** ** * *** ** ***** * * *
* * ****** * *** ** ***** **** * ** * *** * *** * ** * *** ** %d\n",sum);
* * * * ** *** ** * * *
* * * ** ** *** ** ** **
* * ** *** * * * ** *** aver;

}







int main()

{

struct students s[100];

int i,k,aver;



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

{
*** * ** * * ** * ** *** * *********** **
* * **** ***** **** * *** ** ** * * * *
** **** * *** ****** ** * ** *** **** ** * * ** *** **


* ** ***** ** * * * *** * ***
** * ** ** *** ** * ** ** **
** * * ** * ** ** ** ** * ****** * *
** *** * ** ** * ***** * ** **** * *** ***
** * ** * *** ****** * ** ***

}

sort(k,s);

aver=average(k,s);
* *** * *** * *** ** ***

printf("Students who got a higher grade than the average grade of all students:");



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

{
* * * *** * ** ** * * ****** *** * *
* * ** ******* *
*** * *** ***** *** * * * * **** * ** ****** * **** * * * *** *
**** * * *** ** * *** * * ** *** * ** ** **** *** * * ** ** * **
**** * **** * ** *** ** ** ** * * * ** * ** ** * ** **

    }

}



}
answered by (-226 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.180.200
©2016-2024

Related questions

0 like 0 dislike
8 answers
[Exam] asked Apr 21, 2017 in Midterm
ID: 24273 - Available when: Unlimited - Due to: Unlimited
| 248 views
0 like 0 dislike
6 answers
[Normal] asked Apr 21, 2017 in Midterm by thopd (12.1k points)
ID: 24271 - Available when: Unlimited - Due to: Unlimited
| 242 views
0 like 0 dislike
13 answers
[Exam] asked Apr 21, 2017 in Midterm
ID: 24269 - Available when: Unlimited - Due to: Unlimited
| 339 views
0 like 0 dislike
46 answers
asked Apr 13, 2017 in Midterm by thopd (12.1k points) | 975 views
0 like 0 dislike
44 answers
[Exam] asked Apr 13, 2017 in Midterm
ID: 23785 - Available when: Unlimited - Due to: Unlimited
| 883 views
12,783 questions
183,443 answers
172,219 comments
4,824 users