文道流

#include <fstream>
#include <cstdio>
#include <iostream>
using namespace std;
struct wo{
	string name;
	string sex;
		int age;
	int cm;
	int kiko; 
};
int main(){
	freopen("student.txt","w",stdout);
	wo w;
	for(int i=0;i<5;i++){
		cin>>w.name>>w.age>>w.sex>>w.cm>>w.kiko;
		cout<<w.name<<w.age<<w.sex<<w.cm<<w.kiko;
		cout<<endl;
	}
	
	 
}

  

posted @ 2024-12-20 19:12  昵称就是最好的昵称  阅读(5)  评论(0)    收藏  举报