首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴公子小白13号的代码贴全部
#include <stdio.h>
typedef struct 
{
    int num;
    char name[10];
    int math;
    int word;
}student;
student Input(student s)
{
    scanf("%d %s %d %d",&s.num,s.name,&s.math,&s.word);
    return s;
......................
阅读全部 | 2020年9月7日 12:53
1
公子小白13号