0 thích 0 k thích
5.2k đã xem

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] đã hỏi trong Midterm
ID: 23789 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn

hiện lại bởi | 5.2k đã xem

70 Trả lời

0 thích 0 k thích
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 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);
****** * **** *** ** * *

}



}
trả lời bởi (-226 điểm)
0 thích 0 k thích
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 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);
** ** ** * * * ** *

}



}
trả lời bởi (-226 điểm)
0 thích 0 k thích
Hidden content!
#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;}
trả lời bởi (38 điểm)
0 thích 0 k thích
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 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);
* * *** ** **** * ****

}



}
trả lời bởi (-226 điểm)
0 thích 0 k thích
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 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);
* ** **** * * * ** * *

}



}
trả lời bởi (-226 điểm)
0 thích 0 k thích
Hidden content!
#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;

}
trả lời bởi (24 điểm)
0 thích 0 k thích
Hidden content!
#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);
** *** **** ** *** ** * * *** * * ***** *
***** * *** * * * *

}
trả lời bởi (-581 điểm)
0 thích 0 k thích
Hidden content!
#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;

}
trả lời bởi (24 điểm)
0 thích 0 k thích
Hidden content!
#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;

}
trả lời bởi (24 điểm)
0 thích 0 k thích
Hidden content!
#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;

}
trả lời bởi (24 điểm)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.70.127.236
©2016-2025

Những câu hỏi liên quan

0 thích 0 k thích
8 trả lời
[Exam] đã hỏi ngày 21 tháng 4 năm 2017 trong Midterm
ID: 24273 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 924 đã xem
0 thích 0 k thích
6 trả lời
[Normal] đã hỏi ngày 21 tháng 4 năm 2017 trong Midterm bởi thopd (12.1k điểm)
ID: 24271 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 788 đã xem
0 thích 0 k thích
13 trả lời
[Exam] đã hỏi ngày 21 tháng 4 năm 2017 trong Midterm
ID: 24269 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 1.4k đã xem
0 thích 0 k thích
46 trả lời
đã hỏi ngày 13 tháng 4 năm 2017 trong Midterm bởi thopd (12.1k điểm) | 3.5k đã xem
0 thích 0 k thích
44 trả lời
[Exam] đã hỏi ngày 13 tháng 4 năm 2017 trong Midterm
ID: 23785 - Xem được từ: Không giới hạn - Hiệu lực đến: Không giới hạn
| 3.4k đã xem
12,783 câu hỏi
183,442 trả lời
172,219 bình luận
4,824 thành viên