demo_struct_09.cpp

来自「对于一个初涉VC++的人来书」· C++ 代码 · 共 38 行

CPP
38
字号
//******************************
//**       struct_09.cpp      **
//******************************

# include <iostream.h>

struct Person
{
	char name[20];
	unsigned long id;
	float salary;
};

void GetPerson(Person& p)
{
	cout<<"Please enter a name for one person: \n";
    cin>>p.name;
	cout<<"Please enter one's id number and his salary: \n";
	cin>>p.id>>p.salary;
}

void Print(Person& p)
{
	cout<<p.name<<"  "
		<<p.id<<"  "
		<<p.salary<<endl;
}

void main()
{
	Person employee[3];

	for(int i=0;i<3;i++)
	{
		GetPerson(employee[i]);
		Print(employee[i]);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?