首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zhuiyuan731的代码贴全部
#include<stdio.h>
int main()
{
struct information
{
int number;
char name[20];
float grade;
}student[100];
int n,i,j;
struct information temp;
printf("please enter the sum of students:");
......................
阅读全部 | 2016年8月26日 20:56
1
zhuiyuan731