(一)~(九十一)的word版已经上传,链接:
http://download.csdn.net/detail/qq20004604/9359697
word版截止至《C++ Primer Plus第6版中文版》第六章结束。
1.编写一个程序,读取键盘输入,直到遇到@符号为止,并回显输入(数字除外),同时将大写字符转换为小写字符,将小写字符转换大写(别忘了cctype函数系列)。
答:
#include
#include
int main()
{
using namespace std;
char a;
cout << "请输入一些字符,以“@”为结束,你输入的字符,大小写字母将互换:" << endl;
cin >> a;
for (;a != '@';) //遇到字符'@'为止,假如未遇到,可以无限多次输入
{
if (isalpha(a)) //如果是字母
{
if (islower(a))
{
//a = a - 32;
//cout << a;
cout << (char)toupper(a); //如果是小写字母,toupper返回大写字母的ASCII值,注意,需要强制转换后才可以显示字母
}
else
{
a = a + 32;
cout << a;
} //否则返回小写字母(注:大写字母+32对应小写字母)
}
else if (!isdigit(a)) //排除字母之后,如果不是数字,原样输出
cout << a;
else; //剩下只有数字的可能, 什么都不输出
cin >> a; //继续读取内容
}
system("pause");
return 0;
}
2.编写一个程序,最多将10个donation值读入到一个double数组中(如果你愿意,也可使用模板类array)。程序遇到非数字输入时将结束输入,并报告这些数字的平均值以及数组中有多少个数字大于平均值。
答:
#include
#include
int main()
{
using namespace std;
arrayabc;
double pingjun=0,a=0;
cout << "请输入最多10个捐赠款的数额,当你输入非数字的时候,输入结束。并为你计算平均值,且告诉你有多少个超出这个平均值:" << endl;
cout <<"1# 捐赠款的数额:";
int i;
for (i = 0;i < 10 && cin >> abc[i];i++) //当第一个数字输入失败的时候,i为0,执行后面的if,当第一个数字输入成功的时候,通过判断语句,于是i=1。
{
if (i == 9)break; //当第10个的时候,i为9,结束循环(即不输出下面的这段话了)
cout << i+2<<"# 捐赠款的数额:";
}
int j;
for (j = 0;j <= i;j++) //用于计算总和,以及平均数值。
pingjun += abc[j]; //一直加到j和i相等,即假如5个,则加到j=4
pingjun /= j;
for (j = 0;j <= i;j++) //每过一个,则a+1.否则j++,判断下一个数字
{
if (abc[j] > pingjun)a++;
}
if (i == 0) cout << "你没有输入任何数值" << endl;
else
cout << "你输入的数额的平均值为:" << pingjun << " 。并且有 " << a << " 个数额超过这个平均值。" << endl;
system("pause");
return 0;
}
3.编写一个菜单驱动程序的雏形。该程序显示一个提供4个选项的菜单——每个选项用一个字母标记。如果有用户使用有效选项之外的字母进行响应,程序将提示用户输入一个有效的字母,直到用户这样做为止。然后,该程序使用一条switch语句,根据用户的选择执行一个简单操作,该程序的运行情况如下:
Please enter one of the following choices:
c) carnivore p) pianist
t) tree g) game
f
Please enter a c, p, t, or g:q
Please enter a c, p, t, or g:t
A map is a tree.
答:
#include
int main()
{
using namespace std;
char a;
cout << "Please enter one of the following choices:" << endl;
cout << "c) carnivore\tp) pianist" << endl;
cout << "t) tree\t\tg) game" << endl; //2个水平制表符\t用于和上面对齐
for (;cin>>a;) //只要能输入,判断语句值则为真,则执行循环
{
cin.sync(); //防止用户输入内容超出范围,因此读取一个之后,立刻清空剩余的输入缓存区
switch (a)
{
case 'c':cout << "Tiger is carnivore." << endl;break; //符合要求选项则break
case 'p':cout << "The pianist is a beautiful girl." << endl;break;
case 't':cout << "A tree is a map." << endl;break;
case 'g':cout << "LOL is a popular game." << endl;break;
default:cout << "Please enter a c, p, t, or g:";continue; //如果输入的不是要求选项,则从头开始循环,否则break跳出switch
}
break; //只有当遇见符合要求的选项时,才会break switch到这里,于是跳过来,结束循环
}
system("pause");
return 0;
}
4.加入Benevolent Order of Programmer后,在BOP大会上,人们便可以通过加入者的真实姓名、头衔或秘密BOP姓名来了解他(她)。请编写一个程序,可以使用真实姓名、头衔、秘密姓名或成员偏好来列出成员。编写该程序的时候,请使用下面的结构:
//Benevolent Order of Programmers name structure
struct bop {
char fullname[strsize]; //real name
char title[strsize]; //job title
char bopname[strsize]; //secret BOP name
int preference; //0 = fullname, 1 = title, 2 = bopname
};
该程序创建一个由上述结构组成的小型数组,并将其初始化为适当的值。另外,该程序使用一个循环,让用户在下面的选项中进行选择:
a. display by name b. display by title
c. display by bopname d. display by preference
q. quit
注意,“display by preference”并不意味着显示成员的偏好,而是意味着根据成员的偏好来列出成员。例如,如果偏好号为1,则选择d将显示程序员的头衔,该程序的运行情况如下。
Enter your choice: a
Wimp Macho
Raki Rhodes
Celia Laiter
Hoppy Hipman
Pat Hand
Next choice: d
Wimp Macho
Junior Programmer
MIPS
Analyst Trainee
LOOPY
next choice: q
Bye!
答:
#include
using namespace std;
const int strsize = 20;
struct bop
{
char fullname[strsize]; //真实姓名
char title[strsize]; //头衔
char bopname[strsize]; //秘密姓名
int preference; //偏好,当为0时为fullname,1为title,2为bopname
};
int main()
{
bop people[10]=
{
{"王一","程序员","first",0},
{"张二", "老师", "2nd",1 },
{"李三", "公务员", "3rd",2 },
{"赵四", "咨询师", "4th",0 },
{"南宫五", "理发师", "5th",1 },
{"龙六", "玩家", "6th", 2}
};
cout << "你可以通过不同的选项,显示不同的内容。" << endl;
cout << "a. display by name\tb. display by title" << endl;
cout << "c. display by bopname\td. display by preference" << endl;
cout << "q.quit" << endl;
cout << "Enter your choice: ";
char choice; //char类型保证每次只读取一个字符
while (cin.get(choice)) //判断和输入同步,能输入就能判断。
{
cin.sync(); //清空输入缓存,防止用户输入多个字符
if (choice == 'q')break; //当判断输入字符q时,结束while循环
switch (choice) //根据输入的不同输出不同的选项
{
case'a':for (int i = 0;i < 10 && strlen(people[i].fullname) != 0;i++)cout << people[i].fullname << endl;break; //之所以要strlen(),是因为通过其判断是否下一个输入的结构有字符,如果是空,则没有,那么也没必要输出了
case'b':for (int i = 0;i < 10 && strlen(people[i].fullname) != 0;i++)cout << people[i].title << endl;break;
case'c':for (int i = 0;i < 10 && strlen(people[i].fullname) != 0;i++)cout << people[i].bopname << endl;break;
case'd':for (int i = 0;i < 10 && strlen(people[i].fullname) != 0;i++)
{
switch (people[i].preference) //假如输入d,则根据结构中的preference数值判断输出什么内容
{
case 0:cout << people[i].fullname << endl;break;
case 1:cout << people[i].title << endl;break;
case 2:cout << people[i].bopname << endl;break;
}
};break; //最后加上一个break,结束switch
default:cout << "你输入了错误的选项,请重新输入: ";continue; //如果不是abcd,上面又已经判断不是q了,那么要求重新输入(用continue重新开始循环),结束switch
}
cout << "Next choice:"; //这里是当输入abcd选项之后,输出对应的内容,然后执行这一行代码提示继续输入,继续输入由while判断语句进行
}
cout << "bye!" << endl;
system("pause");
return 0;
}
5.在Ncutronia王国,货币单位是tvarp,收入所得税的计算方式如下:
5000 tvarps:不收税
5001~15000 tvarps: 10%
15001~35000 tvarps: 15%
35000 tvarps以上: 20%
例如,收入为38000 tvarps时,所得税为5000x0.00 + 10000x0.10 + 20000x0.15+3000x0.20,即4600 tvarps。请编写一个程序,使用循环来要求用户输入收入,并报告所得税。当用户输入负数或非数字时,循环将结束。
答:
#include
int main()
{
using namespace std;
int tvarp;
double tax;
cout << "这里是税收计算系统,请输入你的收入,这里将为你计算你要交的税。" << endl;
while (cout << "输入收入: " && cin >> tvarp) //第一个条件用于提示要求输入,第二条用于输入,假如输入的为字符等,则第二条返回false,结束循环。
{
if (tvarp < 0)break; //输入负数则结束计算
else if (tvarp <= 5000) cout << "你不需要支付个人所得税。" << endl;
else if (tvarp <= 15000) { tvarp = tvarp - 5000;tax = tvarp*0.1;cout << "你需要支付的税收为 " << tax << endl;}
else if (tvarp <= 35000) { tvarp = tvarp - 15000;tax = 1000 + tvarp*0.15;cout << "你需要支付的税收为 " << tax << endl;}
else { tvarp = tvarp - 35000;tax = tvarp*0.2 + 4000;cout << "你需要支付的税收为 " << tax << endl;}
continue; //结束if后,重新开始循环
}
cout << "你输入的错误的内容,结束计算。" << endl;
system("pause");
return 0;
}
6.编写一个程序,记录捐助给“维护合法权利团体”的资金。该程序要求用户输入捐献者数目,然后要求用户输入每一个捐献者的姓名和款项。这些信息被储存在一个动态分配的结构数组中。每个结构有两个成员:用于储存姓名的字符数组(或string对象)和用来存储款项的double成员。读取所有的数据后,程序将显示所有捐款超过10000的捐款者姓名及其捐款数额。该列表前包含一个标题,指出下面的捐款者是重要捐款人(Grand Patrons)。然后,程序将列出其他的捐款者,该列表要以Patrons开头。如果某种类别没有捐款者,则程序将打印单词“none”。该程序只显示这两种类别,而不进行排序。
答:
#include
#include
struct juankuan
{
std::string name;
double money;
};
int main()
{
int man;
using namespace std;
cout << "这里是记录捐献给“维护合法权利团体”的资金,请先输入捐赠者人数:" << endl;
cout << "人数:";
while (!(cin >> man)) { cout << "输入错误,请重新输入:"; cin.clear();cin.sync(); } //避免输入错误
juankuan *abc = new juankuan[man];
for (int i = 0;i < man;i++)
{
cin.sync(); //每次输入前清空输入缓存区
cout << "请先输入第" << i + 1 << "个人的姓名:";
getline(cin, abc[i].name);
cout << "请输入捐款数额:";
while (!(cin >> abc[i].money)) { cout << "输入错误,请重新输入:"; cin.clear();cin.sync(); }
}
cout << endl;
cout << "以下是重要捐款人(Grand Partons):" << endl;
int j=0;
for (int i = 0;i < man;i++)
if (abc[i].money >= 10000) { cout << abc[i].name << endl;j++; }
if (j == 0) { cout << "None" << endl; }
j = 0;
cout << "\n以下是捐款人(Partons):" << endl;
for (int i = 0;i < man;i++) //注:假如i在外面定义了,这里的循环初始化语句就可以改为i=0,j=0,但由于i在初始化语句声明,而j在for外面声明,那么int i=0,j=0将无效
if (abc[i].money < 10000) { cout << abc[i].name << endl;j++; }
if (j == 0) { cout << "None" << endl; }
system("pause");
return 0;
}
7.编写一个程序,它每次读取一个单词,直到用户只输入q。然后,该程序指出有多少个单词以元音打头,有多少个单词以辅音打头,还有多少个单词不属于这两类。为此,方法之一是,使用isalpha()来区分以字母和其他字符打头的单词,然后对于通过isalpha()测试的单词,使用if或switch语句来确定哪些以元音打头,该程序的运行情况如下:
Enter words(q to quit):
The 12 awesome oxen ambled
quietly across 15 meters of lawn. q
5 words beginning with vowels
4 words beginning with consonants
2 others
答:
#include
#include
#include
int main()
{
using namespace std;
string a;
int yuan = 0, fu = 0, other = 0; //元音辅音变量
cout << "Enter words(q to quit):" << endl;
cin >> a;
while (a != "q")
{
if (isalpha(a[0])) //当是首字母是字母
{
if (a[0] == 'a' || a[0] == 'e' || a[0] == 'i' || a[0] == 'o' ||
a[0] == 'u'|| a[0] == 'U' || a[0] == 'A' || a[0] == 'E' ||
a[0] == 'I' || a[0] == 'O' )yuan++; //是元音字母
else fu++; //不是元音字母
}
else //首字母不是字母
{
other++;
}
cin >> a;
}
cout << yuan << " words beginning with vowels" << endl;
cout << fu << " words beginning with consonants" << endl;
cout << other << " others" << endl;
system("pause");
return 0;
}
8.编写一个程序,他打开一个文本文件,逐个字符读取该文件,直到到达文件末尾,然后指出该文件中包含多少个字符。
答:
#include
#include
#include
int main()
{
using namespace std;
int word = 0;
string text;
char b;
ifstream abc; //声明ifstream类对象abc,ifstream用来操作读取文件
cout << "请输入你想要打开的文件名:";
cin >> text;
abc.open(text);
while (!abc.is_open()) //如果不能打开,循环执行要求输入文件名
{
cout << "你输入了错误的文件名,请重新输入:";
cin >> text;
abc.open(text);
}
for (;abc.get(b);) //只要能读取就可以
{
word++; //计数器+1
}
cout << "文档里有 " << word << " 个字符。" << endl;
system("pause");
return 0;
}
9.完成编程练习6,但从文件中读取所需的信息。该文件的第一项应为捐款人数,余下的内容应为成对的行。在每一对中,第一行为捐款人姓名,第二行为捐款数额。即该文件类似于下面:
4
Sam Stone
2000
Freida Flass
100500
Tammy Tubbs
5000
Rich Raptor
55000
答:
#include
#include
#include
#include
struct juankuan
{
std::string name;
double money;
};
int main()
{
//以下是打开文件
using namespace std;
int man;
string text;
ifstream gg;
cout << "请输入你要打开的文件名:";
cin >> text;
gg.open(text);
while (!gg.is_open())
{
cout << "无法打开,请重新输入:";
cin >> text;
gg.open(text);
}
cout << "文件打开成功!读取中..." << endl;
Sleep(500);
//以下是将文件内容赋值
gg >> man;
juankuan *abc = new juankuan[man];
for (int i = 0;i < man;i++)
{
gg.get(); //读取之前那个gg>>之后的换行字符
getline(gg, abc[i].name);
gg >> abc[i].money;
}
//以下是输出
cout << endl;
cout << "以下是重要捐款人(Grand Partons):" << endl;
int j = 0;
for (int i = 0;i < man;i++)
if (abc[i].money >= 10000) { cout << abc[i].name << endl;j++; }
if (j == 0) { cout << "None" << endl; }
j = 0;
cout << "\n以下是捐款人(Partons):" << endl;
for (int i = 0;i < man;i++) //注:假如i在外面定义了,这里的循环初始化语句就可以改为i=0,j=0,但由于i在初始化语句声明,而j在for外面声明,那么int i=0,j=0将无效
if (abc[i].money < 10000) { cout << abc[i].name << endl;j++; }
if (j == 0) { cout << "None" << endl; }
system("pause");
return 0;
}