C++primer plus第六版课后编程题答案7.9

7.9

#include <iostream>
using namespace std;
const int SLEN=30;
struct student{
	char fullname[SLEN];
	char hobby[SLEN];
	int ooplevel;
};
int getinfo(student pa[],int n);
void display1(student st);
void display2(const student *ps);
void display3(const student pa[],int n);
void main79()
{
	cout<<"Enter class size: ";
	int class_size;
	cin>>class_size;
	while(cin.get()!='\n')
		continue;
	student *ptr_stu=new student[class_size];
	int entered=getinfo(ptr_stu,class_size);
	for(int i=0;i<entered;i++)
	{
		display1(ptr_stu[i]);
		display2(&ptr_stu[i]);
	}
	display3(ptr_stu,entered);
	delete ptr_stu;
	cout<<"Done\n";
	system("pause");
}
int getinfo(student pa[],int n)
{
	int count=0;
	for(int i=0;i<n;i++)
	{
		cout<<"Please enter the fullname:";
		cin>>pa[i].fullname;
		cout<<"\nPlease enter the hobby:";
		cin>>pa[i].hobby;
		cout<<"\nPlease enter the ooplevel:";
		cin>>pa[i].ooplevel;
		count++;
	}
	cout<<"\nEnter end!";
	return count;

}

void display1(student st)	//按值传递
{
	cout<<"\ndisplay1:FullName:"<<st.fullname<<"\nhobby:"<<st.hobby
		<<"\nooplevel:"<<st.ooplevel<<endl;
}

void display2(const student *ps) //传递地址,引用
{
	cout<<"\ndispaly2:FullName:"<<ps->fullname<<"\nhobby:"<<ps->hobby
		<<"\nooplevel:"<<ps->ooplevel<<endl;

}
void display3(const student pa[],int n)
{
	cout<<"\ndispaly3:"<<endl;
	for(int i=0;i<n;i++)
		cout<<i<<"::FullName:"<<pa[i].fullname<<"\nhobby:"<<pa[i].hobby
		<<"\nooplevel:"<<pa[i].ooplevel<<endl;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值