C++ Primer Plus第五版 第八章 编程练习答案

本文提供C++ Primer Plus第五版第八章的编程练习详细解答,涵盖循环控制、函数应用等核心概念,帮助读者巩固C++基础知识。
摘要由CSDN通过智能技术生成
/*******************************************************************************************************************  
Author : Cui mingyang 
Blog : cx_12586 
Time : 2017/11/1 
From : C++ Primer Plus第五版第8章编程练习 第1题  
*******************************************************************************************************************/ 
#include<iostream>
const int ArSize = 80;
using namespace std;
void Printf(const char *ch,int n=1);
static int count=0;
int main()
{
	cout << "Enter a string: \n";
	char ch[80];
	cin.get(ch,ArSize);
	cout << "#1 " <<endl;  
	Printf(ch,20);  
	cout << "#2 " <<endl;  
	Printf(ch,40);   
	cout << "#3 " <<endl;  
	Printf(ch,10); ;  
	cout << "#4 " <<endl;  
	Printf(ch); 
	system("pause");
	return 0;
}
void Printf(const char *ch,int n)
{
	++count;
	if (n)
	{
		for (int i=0;i<count;i++)
			cout << ch <<endl;
	}	
	else
		cout << ch <<endl;
}


/*******************************************************************************************************************  
Author : Cui mingyang 
Blog : cx_12586 
Time : 2017/11/1 
From : C++ Primer Plus第五版第8章编程练习 第2题  
*******************************************************************************************************************/ 
#include<iostream>
const int ArSize = 80;
using namespace std;
struct CandyBar
{
	char brand[ArSize];
	double weight;
	int heat;
};
void fill_it(CandyBar &a,const char *ch="Millennium",double weight=2.85,int heat=350);
void show (const CandyBar &a);
int main()
{
	CandyBar candy1;
	cout << "Enter the brand of the candy: \n";
	char name[ArSize];
	cin.get(name,ArSize);
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值