parent
62fc003d2d
commit
96cdf14196
@ -0,0 +1,21 @@
|
||||
#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()
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in new issue