题目:
编写一个程序,记录捐献给"维护合法权利团队"的资金。该程序要求用户输入捐献者数目,然后要求用户输入每一个捐献者的姓名和款项。这些信息被存在一个动态分配的结构数组中。每个结构有两个成员:用来存储姓名的字符数组和用力啊存储款项的double成员。读取所有的数据后,程序将显示所有狷狂超过1000的捐款者的姓名及捐款数额。该列表前应包含一个标题,指出下面的捐款者是重要捐款者。然后,程序将列出其他捐款人,该列表要以Patrons开头。如果某类没有捐献者,则程序将打印单词"none",该程序值显示着两种类型,而不用进行排序。
源代码:
#include <iostream>
struct donate {
char name[20];
int money;
bool important; //表示重要捐献者
};
int main()
{
using namespace std;
int people_num = 0;
int sig = 0; //表示当前捐献列表没有人
cout << "请输入捐赠者的数量: ";
(cin >> people_num).get();
donate* people = new donate[people_num];
for (int i = 0; i < people_num; i++)
{
cout << "请输入第 " << i + 1 << " 位捐献者姓名: ";
cin.getline(people[i].name, 20);
cout << "请输入捐献者金额: ";
(cin >> people[i].money).get();
people[i].important = 0;
}
cout << "重要捐献者: " << endl;
for (int i = 0; i < people_num; i++)
{
if (people[i].money > 1000)
{
cout << "姓名: " << people[i].name << " 金额: " << people[i].money << endl;
people[i].important = 1; //表示为重要捐献者
sig = 1; //当前类非空
}
if (!sig && i == people_num - 1)
{
cout << "none" << endl;
}
}
sig = 0;
cout << "其他捐献者: " << endl;
for (int i = 0; i < people_num; i++)
{
if (!people[i].important)
{
cout << "姓名: " << people[i].name << " 金额: " << people[i].money << endl;
sig = 1; //当前类非空
}
if (!sig && i == people_num - 1)
{
cout << "none" << endl;
}
}
return 0;
}
演示效果:
如果朋友你感觉文章的内容对你有帮助,可以点赞,关注文章和专栏以及关注我哈,嘿嘿嘿我会定期更新文章的,谢谢朋友你的支持哈
标签:39,cout,people,int,练习,程序,C++,num,捐献者 From: https://blog.csdn.net/little_startoo/article/details/142044562