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