7-2.cpp
来自「为C++学习者」· C++ 代码 · 共 34 行
CPP
34 行
#include<iostream.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct st
{
char name[20];
long num;
int age;
char sex;
float score;
};
void main()
{
struct st student[3],*p;
int i;
//char numst[20];
p=student;
for(i=0;p<student+3;p++,i++)
{
cout<<"Enter all data of student :["<<i<<"]\n";
cin>>student[i].name;
cin>>p->num;
cin>>p->age;
cin>>p->sex;
cin>>p->score;
}
cout<<"record num name age sex score"<<"\n";
for(i=0,p=student;p<student+3;p++,i++)
cout<<i<<p->name<<p->num<<p->age<<p->sex<<p->score<<"\n";
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?