0 like 0 dislike
8k 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 | 8k views

70 Answers

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

#include <string.h>



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

};

int main()

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

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

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    

    student list[100];

    while(1){
* * *** ** * ** * * ** **** * ** ** * ***** * i;
* ***** **** * * * ** *** ***** *** * * * sum=0;
**** ** ******* *** * * * * * ** * average=0;
** **** * * * *** ** ** * **** ** stu=0;
* ** * * *** * ** * * **** **** * * ****** ** ** ** * * ** * ****
* ***** * * *** * * ** **** ** ** * * *** * * *** * *** * ** *** * * ***** * * * * ** ** **** **** ** *
* * * ** * *** * ** * * ** * ***** * ** ** * ** ** *
* * ***** * * * *** ** ** *** * * *** * * ** * * *** * * * == -1){
* * * * * * * * * * * ** * **** * *** * * *** * * * * * * * *** * * * **** * * ** *
* * * * ** * * *** * ** *** ** * ** ** * * ** * ** * *** * *** ** * * ** *** *** *** ** ** ** ****** = sum + list[i].grade;
** * * **** * ***** * *** * * * ** ** * * *** * * * * * * * ** ** ***** * * * *
** * * ** *** *** ***** * ** *** * * * *** ****** * ** ** * * * * ** *** * = (sum+1) / (stu-1);
* **** ** * **** * * * * **** * * ** * * *** *** ** **** * * *** * * ** * ***** *** * * * * *** *
** ** * * ****** *** *** * * * **** ** *** ** **** ** ** * * * *** * ** **** * ** * *** * *** * ***
* ******** * *** ** *** * ** * ** * ** * * ** ***** * * * * *** * * *** * ** ** ** ** * ** * ** * * ** * * ** ** * * ** * * * * * **** ******** * * ** * *** **
*** * **** ** * **** *** ** ** *** **** * * **** * * * *** * *** ** * ** **** * * * ******* * *** * ** ** *
** *** ** * * * * ** *** ** * ** * * ** * * * ******* * ** * *** * *** *** ******* ***
* * **** * **** * * * * ** ** * * ** * ** * *** * * ***** **** * * * ** *** ********* * * ** * * * *
* *** * * ** * ******* * * ** * * * * * * ** *** * *

        }

    }

    return 0;

}
answered by (24 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)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    

    student list[100];

    while(1){
* * ** * *** *** * ******* * ** * * ***** * * i;
** * *** * *** **** ** * *** * * ** * * ** sum=0;
* * *** * * * * * * * * ** ** * ** ** *** * ** **** average=0;
** ** * * * * * ** ** *** **** *** * stu=0;
**** * * ** ** ***** *** * * * ** * * * * * ***
* ******* *** *** *** * * * * * * * * ** * * * ** ** **** ** ** * * *** * **** **** **** * ** *
*** ***** * ******* ** * **** * ** * * * * * * **** * *** *
* * * *** *** ** ** * ** * **** * ** ** ** ** * ** * *** *** * == -1){
** * ****** ****** * ** *** * ** * * ** * ***** ** ** * ******* ** *** ****** * * * * * * * * * ****** * **
* * **** ** ******* ** * ***** *** *** * **** ** * * * * ** * *** ** ** * **** * * **** * *** = sum + list[i].grade;
**** *** * ** ** * * * * ** * ** *** ** * * ** ** * * * * ** ******* * ** *
** ** ** * * * * ****** ****** * * ** * ** * * * ** ** * ** * ** * ** **** ** * ** = (sum+1) / (stu-1);
***** ** *** * ** * * * ** * * * * ****** * *** * *** * ** ** ** * *** * ** **** *** *
* ***** ***** * **** * * ** * * * * *** * * *** ** ** ** * * * ** *** **** ** * ** * **** ** * * * * * ** ***** * * * * * *
** * ** * * *** * ** **** *** * * * * * **** ** ** **** *** * * * * ** * *** * * ** * ** * * * *** * ** * *** ** *** * *** ** * * * * ** *** ****** * *** **
**** ** ** * *** * * *** ** * *** * ** *** ** ** ** *** *** * ** ** * * ** * * ** ** * ** ** * * *
* * * * ** * * * ********** * ** **** ** ******* * ** *** ** * * * *
* **** *** ****** * ** * * * * *** * * ** * ** * ***** ** * *** ** **** ** **** * * ** * ** *
** * ** **** ***** * ** * * * * * * ** *** * *** * * * ** *

        }

    }

    return 0;

}
answered by (24 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:\n");



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

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

    }

}



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



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

};



struct student stud[100];





void sort(int i)

{
* ** ** * ** ****** j,k,temp,m;


*** * * * *** ** * = 0; j < i; j++)
* * ** ** *** * * **
* * * * * ** ** ** * ** **** *** **
*** * ***** ** ******** * *** * * * * ** **** ** = 1; k < i; k++)
* ** * * * * * * * * ** *** *** * * *
* * *** ** * ** *** * * * * * * * ** ** ** * ** ** * * * * ** *** * ** ***** > stud[k].grade)
** * ** ** *** * ** * * * * * *** ** ** * *** ** * * * ***
*** * *** * * ** * * ***** *** * * ** * * * ***** ** * **** * * * ** * ** student temp = stud[k];
** ** * ** ** *** * ** **** ** ** * * * ** **** * * *** ** ***** * * * **** ****** ***** * * * = stud[m];
** * * ** *** * ** * * ** ** *** **** * *** * *** ** ** ** *** ****** * * ** ** ** = temp;


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



}



void print(int i, int av)

{
*** **** * *** *** * j;
* * * **** * *** ** * ** *** who got a higher grade than the average grade of all students:\n");
** * * ** * ** * * * = 0; j < i; j++)

    {
* *** **** * * ** * ** * *** ** * ** * ** > av)
*** ** ** ** ** * **** *** **
** ** ********* * ** * *** *** * * ****** * ** ** * ** * ** * * ** ** %s\n", stud[j].name);
* **** ** ** *** * **** ** * * *** * ** * ***** ** *** * * * ** *** **** %d\n", stud[j].code);
* *** ** * * ** **** * * ** ** * ** ** * * ** * * **** * * * ** ** **** %d\n", stud[j].grade);
** *** *** *** * * * *** * * * *
* * ****** *** * *

}



int main()

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


*** *** **** **** *** * *** * = 0; i <= 100; i++)
* * ***** * * ** * * * *
* * ** ** * ** *** ** ***** ******** ** * **** ** ****** &stud[i].name);
* *** * ** ** ****** * *** * *** * * * ** ** ** &stud[i].code);
** * * * * * * * * * **** ** * * *** *** ** ***** &stud[i].grade);
****** * ** **** ** ** * * *** * * * * * * * ** ** == -1)
*** *** ** * *** **** * * * ** * ** ** *** * * * * * ****** *****
* * ** * * * ** *** * *** * * * ** ****** ** += stud[i].grade;

    }


* * *** * *** * * = sum/i;


* ** * ** ** *** * * **
** * ** ***** * ** * ** == 1)
* * ** ** ***** * * **
* *** ** ** ** ** * * ** ** * * * **** * *** *** * * %s\n", stud[0].name);
* * * **** * ** * *** * * ** *** * * * * ******** %d\n", stud[0].code);
* ** * * **** ** *** ** * * ** ** * ** * *** ** * ** * **** %d\n", stud[0].grade);
** ** **** ** * ** **** *
*** *** * * * * * * * * ***** **** ** * ** ** * * **

    }


* *** **** * *** * ** ** 0;

}
answered by (-189 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:\n");



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

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

    }

}



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

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    

    student list[100];

    while(1){
*** * * * * ** * *** * ******** * ****** i;
** * * ** * * * ** ** * * ******* ** * *** sum=0;
** ***** *** * * **** *** ** * ** ** ** average=0;
* * ** * * * * ** * * **** *** stu=0;
* * * ***** ******* * **** *** * *** ** *** * * * *
* ** * * * *** * * *** *** * * ** ** ** * * * * * ** ***** ** ** * * * *** * ** * * ***** * ** * * *
***** * * * ** * ***** ** *** ***** **** ** * * ** * * ** * * ** * **
*** * * * *** * *** ** * * * ** * ***** *** ** ** ** * * * *** ****** * == -1){
* * * * ** * * * * * * * * ** ** ** ** * * ** * * * * * ** * * *** ** ** *** **** * **** *
*** ** * *** * ** ***** ** *** * * * ** * * ***** ** ** ** ** ** * **** ** * ** *** * * ** ** * ** ** = sum + list[i].grade;
* * * ** * * ** * *** * * ** ** * * * ** * ** * ** * * * **** ** ** **
* ** * * * ** * * **** **** ***** ** * * * ** ***** * **** * ** ********** * * ** = (sum+1) / (stu-1);
*** ********* **** * * ** * * * * * * **** *** * ***** ** * * * ** ** * ** ** * ** * ** * ** * **** * * * * * ****
** ** *** * * ** * ***** * *** * ** *** **** ** * ** * ** *** ** ** * * * * ** * * * * *
*** * **** * * *** ** ** * * ** * * *** ** ** ***** *** * * * * ** *** * * **** * * ** ** * ** * * ** ** * * * * **** *** * *** *
*** ** ** ****** ** * ****** * ** **** * * * * ** ** * **** * **** * * * * * * ** ***** **** * * ** * *** ** * ** ** *** * ** *** * ** *** * * ** **** *******
* **** *** ** * * **** ** * ** * ** * * * * **** ** * * * *** * * * ** *** * ** * * **
*** * * * *** ** * *** ** * *** **** * ********* * *** * * * * ***** * * *** **** * ** * *** * *
** ** * * ******* ** ** * ** * ** * * * * * * * *** * * * *** * *

        }

    }

    return 0;

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

#include<stdlib.h>

typedef struct StdList{
*** ** ** ** *** ** ** name[100];

    int stdnumber[100];
** **** ** ** **** *** score;

}u;

int PrintList(int i,struct StdList people[]){
**** * ** *** ** * **** ave=0;
* * *** *** * ** *** * ** * j=0;j<i;j++){
* ** ** *** * * * ******* * ** * ***** *** k=0;k<i-1;k++){
*** * * *** ** * *** ** *** ** * * * ** **** *** ** * * * **** > people[k+1].score){
*** ** *** *** *** * ***** * * * * ** ** **** * *** * *** * * ** ** ***** ** ***** ** * StdList change=people[k];
** * *** **** ** * ** ** **** * * ** * * **** ** * * * **** * ** ****** * ** ** * ****** *** * ** ** *
* *** * * * * ** * * * * *** * * * ** ** * * * *** ** * ********** ** ** * ******
* ** * * ** * **** ***** * * ***** ** * * *** * ** * * * *
* * *** **** *** * * * ** * * *** **** * * * *

    }
**** ************ * * ** j=0;j<i;j++){
* * * ** * * ** *** * * ****** ** * ** ** **** * *

    }
** * * * * * *** * * ** ** ** who got a higher grade than the average grade of all students:\n");
* ** * *** * * *** *******
*** * * *** *** * *** *** ** * * * *** * ** * *** %s\nCode: %s\nGrade: *** * ** ** * * ** * * ** * * * **
******** **** ** *
* **** ***** *** * *** ** * * *** j=0;j<i;j++){
** * * *** * ** * ****** * * ** * * * * * * ** **** ** ** * * * *** *******
** * ****** ** ** **** * *** **** ** * ****** ** *** * ** * ** * * * ** * **** * * ** ** ** *** * %s\nCode: %s\nGrade: * * * ** ** * ** **** * * *
* * *** ** * **** ** * * * ** * * *** * ** ******* * ** ** *
* *** *** **** * * * ** ** ******* * * *

    }

}

int main()

{

    int c=1,i=0;
* ** ** *** *** ** ** **** StdList people[100];
* ** * *** ** *** ***
* *** * * ** * *** ** ** ** ** * *** * *** ** *** *** *
* * ***** ** * ** ****** ** ** ** *** ** ** * ** * * ** * * *
* *** ** ** *** ** ***** ** **** * **** * ** ** *** * *** ***
** **** ** * ** ******* **** * * * * * * * *** ** * * **
*** *** * ******* ** * * *** ** * * * ** * ** ** ******** ***** ** *** **
* * * ** *** * * * *** * ** ** ***

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

}
answered by (-384 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:\n");



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.7.59
©2016-2025

Related questions

0 like 0 dislike
8 answers
[Exam] asked Apr 21, 2017 in Midterm
ID: 24273 - Available when: Unlimited - Due to: Unlimited
| 1.5k 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
| 1.3k views
0 like 0 dislike
13 answers
[Exam] asked Apr 21, 2017 in Midterm
ID: 24269 - Available when: Unlimited - Due to: Unlimited
| 2.1k views
0 like 0 dislike
46 answers
asked Apr 13, 2017 in Midterm by thopd (12.1k points) | 5.4k views
0 like 0 dislike
44 answers
[Exam] asked Apr 13, 2017 in Midterm
ID: 23785 - Available when: Unlimited - Due to: Unlimited
| 5.4k views
12,783 questions
183,442 answers
172,219 comments
4,824 users