0 喜歡 0 不喜歡
10.7k 瀏覽

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

 

[考試] 最新提問 分類:Midterm |
ID: 23789 - 從幾時開始: 無限制 - 到幾時結束: 無限制

重新顯示 用戶: | 10.7k 瀏覽

70 個回答

0 喜歡 0 不喜歡
內容已隱藏
#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 main()

{

struct students s[100];

struct students s1;

int i,k,j,aver,sum=0;



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

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


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

}



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

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

}



//sort(k,s);

for(i=0;i<=k+1;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+1;i++)

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

}



}
最新回答 用戶: (-226 分)
0 喜歡 0 不喜歡
內容已隱藏
#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 main()

{

struct students s[100];

struct students s1;

int i,k,j,aver,sum=0;



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

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


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

}



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

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

}



//sort(k,s);

for(i=0;i<=k+1;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+1;i++)

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

}



}
最新回答 用戶: (-226 分)
0 喜歡 0 不喜歡
內容已隱藏
#include * ** ***** *

#include ** * * ***



int main(void)

{
** * * *** * * ** ** *** name;
* * * * * * **** ID;
** *********** ** *** * grade;
* * ** *** * * ** counter [100];
* ** * * *** average;


* * *** ** * * ** * ** student * * **
** ** ** * * * * * *** * *
** **** ****** * * **** * * * ** ** ** student * * * *** *
* * ** * *** * ** **** ** * * (ID);
* * ** ** * ***** ** **** * * student * * *****
**** * * * **** (grade);


* * ** ** * *** * * * * * * **** who got a higher grade than the average grade of all * ** * *


***** * * ** **
** * * ** **** * * *** * ****** average, counter +1;
* * * * * **** * ** * * ****** * ** * * ID, grade;
****** * * ** ** * ****** if ** * **** counter +1;
* *** **** ** * *** * **** * * name2, ID2, grade2;
* ** *** * * * ** ** **
** * * *** * * ***
* ** ** ** **** * * *** *** **** **** *** if grade *** * return;
**** ** * * * **



return 0;}
最新回答 用戶: (38 分)
0 喜歡 0 不喜歡
內容已隱藏
#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 main()

{

struct students s[100];

struct students s1;

int i,k,j,aver,sum=0;



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

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


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

}



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

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

}



//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\n",s[i].code);
***** * ***** ** **** ** * * * * ** ** * * * **** * * *** %d",s[i].grade);
* * * ** ** * *** **

}



}
最新回答 用戶: (-226 分)
0 喜歡 0 不喜歡
內容已隱藏
#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 main()

{

struct students s[100];

struct students s1;

int i,k,j,aver,sum=0;



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

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


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

}



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

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

}



//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\n",s[i].code);
*** * * * * * * ****** ** * * * * * * * *** **** %d",s[i].grade);
* * * * ** * * *****

}



}
最新回答 用戶: (-226 分)
0 喜歡 0 不喜歡
內容已隱藏
#include <stdio.h>

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    while(1){
* * * ** ** * * *** * **** ** **** *** * * list[100];
** * ** * * * * * * ** * * * * * ** * ** ** * * *** i;
* * * * * ** *** * * ** * * * * * ** sum=0;
*** * ** *** **** * * * ** * * * * * * ** * average=0;
**** * * * ** ** ** *** * ** *** **** * ** * * stu=0;
**** **** ************ ** * * *** * ** * *** * *** *** ***
*** * ** * *** * ** *** * ** ********* ** ** *** ** * * ** * ** * * * * ** * * * ** * * * * * **
* * * * *** ** * ** **** *** * * * * * **** * ** ******* **
*** * ***** ***** ** * * * * ***** * *** ** * * ** ***** * *** * * * * * * * * == -1){
* * ** * ** * ** *** * * ** ** * * *** * *** ** ** * * ** * * * * ** **** *** ** * ** *
********** * ** *** * ** ** *** * *** ** * ** *** * **** * * ** * * * * * * **** * * * * * * = sum + list[i].grade;
* ** **** ** ** * **** **** * ** ****** * ** *** * ** * * * * **** * * * *** * * * **** *
**** * * ** * * ** * ** * ** ** * * * *** * ** ** ***** *** ** ** *** * ***** * ***** ** = sum / (stu-1);
* * * * **** * * * *** ** * ** ******* ** ** *** * ** **** **** * * * * * * ****** * * ** * * * ***** ** who got a higher grade than the average grade of all students:\n");
* * * ** ** * *** *** * **** * ** *** *** ** *** *** ** * * * ** *** * *** *** *** * *** *** * ***
** * * ** *** * * * * * *** * * * **** * ** * * ** ** * **** ** ** * * * ** *** * * * * ** * ******* ** ** ** ***
*** * ***** *** **** ** * *** * *** *** * ** ** *** * **** ** * * ** * * * **** ** ** *** ** * *** *** * * * * ** ** * %s\nCode: %d\nGrade: %d\n",list[i].name,list[i].code,list[i].grade);
* **** *** * *** ** ** ** * * * * * *** ** * * * ** *** * *** * * * * * ****** * *** * * * * * **** * **
* ** * ** ** *** ** **** * ** * ** ***** * * ** **** ** ** * * **** * * * * ** * * ** *
* *** * * * * ** ***** ** ** * *** * *** * * * ** ** * ** * * * *** * ** * 1;
* * ***** * *** ** * * * * * * * * * * ** *** ** ** * * * *****

        }

    }

    return 0;

}
最新回答 用戶: (24 分)
0 喜歡 0 不喜歡
內容已隱藏
#include * * * * ******* *



struct student{
* **** ** * ** ** *** * * name[10];
** * * * * * **** ** ** * num;
* ** *** * * ** gra;

}stu[100];

int i, end, ave_value;



void scan(void);

void ave(void);

void print(void);



int main(void){
** *** ** *** * * * ****
* ***** * ** * ** *******
** * * * **** * * ** * **

}



void scan(void){
* * * *** * ** *** i<100; i++){
* * * **** ** * * * * **** * * ** ****** * * ***** * stu[i].name);
* * *** * * * ** * * * * * ** ** ** *** * ** ** *** *** * ** **
* ****** ** *** ** ** *** ** *** * *** * * **** * * * * ** * *** * **** *
** **** **** * ** * * ** *** * ** * ** break;
* * * * * * *** *** **
** * * * * ** * ** * * * *

}



void ave(void){
** ******** * * * * *** ** *** ave_value=0; i<end; i++){
* * * ******** ** **** * * **** * ** ***** *** ** *** * * * **
******** * **** ****
* *** **** * * ** * ** *

}



void print(void){
*********** * * * *** *** ** * * who got a higher grade than the average grade of all ** * ** **
* ** ******* * ** * * * * * i<end; i++){
** * *** * ***** * * ** * **** * * * *** **** * * ******
* * ** * *** ** * * ** ** * * * **** ***** * *** * ** *** * ******** %s\n", stu[i].name);
********* **** ** ** ** * *** ** ** ** ** * * * *** *** ****** * * ** * * ** * stu[i].num);
** ** * * ** * * ** *** *** * ** * ** * * * ** * * * * *** **** * * * * * ** * %d\n", stu[i].gra);
* *** *** * *** * * **** * ** * *** ** * *
* * * * *** *****

}
最新回答 用戶: (-581 分)
0 喜歡 0 不喜歡
內容已隱藏
#include <stdio.h>

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    while(1){
* * *** * ** *** * * * * * * * *** list[100];

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

        }

    }

    return 0;

}
最新回答 用戶: (24 分)
0 喜歡 0 不喜歡
內容已隱藏
#include <stdio.h>

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    while(1){
*** *** **** * ****** * * *** * *** * * * * *** * list[50];
** * ** ** *** * * ****** * *** i,j,k;

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

        }

    }

    return 0;

}
最新回答 用戶: (24 分)
0 喜歡 0 不喜歡
內容已隱藏
#include <stdio.h>

#include <stdlib.h>



typedef struct Student{

    char name[50];

    int code;

    int grade;

}student;



int main(){

    student list[50];

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

        }

    }

    return 0;

}
最新回答 用戶: (24 分)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:104.23.243.109
©2016-2026

相關問題

0 喜歡 0 不喜歡
8 回答
[考試] 最新提問 4月 21, 2017 分類:Midterm |
ID: 24273 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 2k 瀏覽
0 喜歡 0 不喜歡
6 回答
[正常] 最新提問 4月 21, 2017 分類:Midterm | 用戶: thopd (12.1k 分)
ID: 24271 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 1.8k 瀏覽
0 喜歡 0 不喜歡
13 回答
[考試] 最新提問 4月 21, 2017 分類:Midterm |
ID: 24269 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 2.9k 瀏覽
0 喜歡 0 不喜歡
46 回答
最新提問 4月 13, 2017 分類:Midterm | 用戶: thopd (12.1k 分) | 7.2k 瀏覽
0 喜歡 0 不喜歡
44 回答
[考試] 最新提問 4月 13, 2017 分類:Midterm |
ID: 23785 - 從幾時開始: 無限制 - 到幾時結束: 無限制
| 7.4k 瀏覽
12,783 問題
183,442 回答
172,219 留言
4,824 用戶