首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴lzzz的代码贴全部
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct Record
{
    int sequence;
    char studentID[12];
    char name[50];
};

......................
阅读全部 | 2023年10月10日 10:59
1
lzzz