首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴简安呐的代码贴全部
#include<stdio.h>
#define N 3 
struct student
{char num[10]; 
char name[20]; 
char coure[20]; 
float score[2]; 
float lastscore;
};
int main()
{
void input(struct student stu[]);
......................
阅读全部 | 2019年5月30日 22:46
1
简安呐