You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <iostream>
|
|
#include "student.h"
|
|
using namespace std;
|
|
|
|
struct student{
|
|
long int id[10]; ///十位学号
|
|
char name[15]; ///姓名
|
|
long int phonenumber[11]; //手机号
|
|
struct date; //日期
|
|
};
|
|
|
|
struct date{
|
|
int year;
|
|
int month;
|
|
int day;
|
|
};
|
|
|
|
int main()
|
|
{
|
|
|
|
}
|