#include<iostream>
using namespace std;
struct student
{
string name;
int IQ;
int age;
char gender;
double heignt;
string shenfenzhenghao;
};
int main()
{
student t;
t={"田则航",250,9,'男',250,"500103************"};
cout<<t.name<<" "<<t.IQ<<" "<<t.age<<" "<<t.gender<<" "<<t.heignt<<" "<<t.shenfenzhenghao;
return 0;
}