TZH

ykj10 2022-03-12 19:56:38 0
#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;
}
{{ vote && vote.total.up }}