定义一个结构体student,存储学生的学号、名字、性别和年龄,读入每个学生的所有信息,保存在结构体中,并输出。结构体student的定义如下:
struct student {
int num;
char name[20];
char sex;
int age;
};
本题要求使用指向结构体数组的指针进行输入和输出。
标签:整数 pre ble gre stat com php 包含 sub
定义一个结构体student,存储学生的学号、名字、性别和年龄,读入每个学生的所有信息,保存在结构体中,并输出。结构体student的定义如下:
struct student {
int num;
char name[20];
char sex;
int age;
};
本题要求使用指向结构体数组的指针进行输入和输出。
第一行有一个整数n,表示以下有n个学生的信息将会输入。保证n不大于20。
以后的n行中,每一行包含对应学生的学号、名字、性别和年龄,用空格隔开。保证每一个人名都不包含空格且长度不超过15,性别用M和F两个字符来表示。
有n行,每行输出一个学生的学号、名字、性别和年龄,用空格隔开。
请注意行尾输出换行。
3
10101 LiLin M 18
10102 ZhangFun M 19
10104 WangMin F 20
10101 LiLin M 18
10102 ZhangFun M 19
10104 WangMin F 20
参考代码:
#include<stdio.h>
#include<string>
#include<vector>
#include<iostream>
using namespace std;
struct student{
int num;
char name[20];
char sex;
int age;
};
int main(){
int n;
cin>>n;
vector<student> stu(n); //注意>后要空一格,stu后是()
for(int i=0;i<n;i++){
cin>>stu[i].num>>stu[i].name>>stu[i].sex>>stu[i].age;
}
for(int i=0;i<n;i++){
cout<<stu[i].num<<" "<<stu[i].name<<" "<<stu[i].sex<<" "<<stu[i].age<<endl;
}
return 0;
}
标签:整数 pre ble gre stat com php 包含 sub
原文地址:http://www.cnblogs.com/zhhjthing/p/7845986.html