LCX

ykj26 2022-03-12 19:56:06 0
#include <bits/stdc++.h>

using namespace std;

struct student
{
	string naem;
	string gender;
	int iq;
	int age;
	int shengao;
};
int main()
{
	student a;
	student b;
	a = {"李辰希","",120,10,137};
	b = {"田则航","",250,9,135};
	cout<< a.naem<<' '<<a.gender<<' '<<a.iq<<' '<<a.age<<' '<<a.shengao<<endl; 
	cout<< b.naem<<' '<<b.gender<<' '<<b.iq<<' '<<b.age<<' '<<b.shengao;
}
{{ vote && vote.total.up }}