C++新手,希望网友们看过之后多给些建议,特别感谢!
#include<iostream>
using namespace std;
struct date
{
int year;
int month;
int day;
};
struct student1
{
char name[20];
char sex[20];
int height;
int weight;
char id[20];
};
int main()
{
struct date a1 = { 2003,6,23};
struct student1 a2 = { "隔壁老王","男",185,140,"学号1314520" };
cout << "生日:" << a1.year<<' ' << a1.month<<' ' << a1.day << endl;
cout << "学生1:" << a2.name <<' ' << a2.sex <<' ' << a2.height <<' ' << a2.weight<<' ' << a2.id << endl;
return 0;
}