概述
1.编写通常接受一个参数(字符串的地址),并打印该字符串的函数。然而,如果提供了第二个参数(int类型),且该参数不为0,则该函数打印字符串的次数将为该函数被调用的次数(注意,字符串的打印次数不等于第二个参数的值,而等于函数被调用的次数).是的,这是一个非常可笑的函数,但它让您能够使用本章介绍的一些技术。在一个简单的程序中使用该函数,以演示该函数是如何工作的。
#include <iostream>
using namespace std;
void print(char * str, int n = 0);
int main()
{
char str[20] = "leonardo liu";
print(str);
print(str, 5);
print(str, 16);
return 0;
}
void print(char * str, int n)
{
static int flag = 0;
flag++;
if (n == 0)
cout << str << endl;
else
{
for (int i = 0; i < flag; i++)
cout << str << endl;
}
cout << endl;
return;
}
2.Candy Bar结构包含3个成员。第一个成员存储 candy bar的品牌名称;第二个成员存储 candy bar的重量(可能有小数);第三个成员存储 candy bar的热量(整数).请编写一个程序,它使用一个这样的函数,即将 Candy Bar的引用、char指针、 double和int作为参数,并用最后3个值设置相应的结构成员。最后3个参数的默认值分别为“ Millennium munch”、2.85和350.另外,该程序还包含一个以 Candy bar的引用为参数,并显示结构内容的函数。请尽可能使用 const。
#include <iostream>
#include <cstring>
struct CandyBar{
std::string name;
double weight;
int heat;
};
void SetFun(CandyBar &, char * na = "Milennium munch",
double wt = 2.85, int ht = 350);
void Show(const CandyBar & cb);
int main()
{
CandyBar cb = {"jingliming",3.44,220};
SetFun(cb);
Show(cb);
return 0;
}
void SetFun(CandyBar & cb, char * na, double wt , int ht)
{
using namespace std;
cout << "name: " << cb.name << endl;
cout << "weight: " << cb.weight << endl;
cout << "heat: " << cb.heat << endl;
cb.name = na;
cb.weight = wt;
cb.heat = ht;
}
void Show(const CandyBar & cb)
{
using namespace std;
cout << "name: " << cb.name << endl;
cout << "weight: " << cb.weight << endl;
cout << "heat: " << cb.heat << endl;
}
3.编写一个函数,它接受一个指向 string对象的引用作为参数,并将该 string对象的内容转换为大写,为此可使用表64描述的函数 toupper().然后编写一个程序,它通过使用一个循环让您能够用不同的输入来测试这个函数,该程序的运行情况如下
Enter a string (g to quit): go away
GO AWAY
Next string (a to quit): good grief!
GOOD GRIEF
Next string (a to quit): g
Bye.
#include <iostream>
#include <cstring>
#include <cctype>
using namespace std;
void ConvertFun(std::string &);
int main()
{
string word;
cout << "Enter a string (q to quit): ";
while(getline(cin,word) && word != "q")
{
ConvertFun(word);
cout << word << endl;
cout << "Next string (q to quit):";
}
cout << "Bye." << endl;
return 0;
}
void ConvertFun(std::string & str)
{
for(int i = 0; i != str.size(); i++)
str[i] = toupper(str[i]);
}
4.下面是一个程序框架:
请提供其中描述的函数和原型,从而完成该程序。注意,应有两个show()函数,每个都使用默认参数请尽可能使用 cosnt参数。se()使用new分配足够的空间来存储指定的字符串。这里使用的技术与设计和实现类时使用的相似。(可能还必须修改头文件的名称,删除 using编译指令,这取决于所用的编译器。
#include <iostream>
using namespace std;
#include <cstring> // for strlen() ,strcpy()
struct stringy{
char * str;
int ct; // length of string (not counting '