博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
编程菜鸟的日记-初学尝试编程-C++ Primer Plus 第6章编程练习6
阅读量:5173 次
发布时间:2019-06-13

本文共 565 字,大约阅读时间需要 1 分钟。

#include 
#include
using namespace std;const int MSIZE=100;struct juankuan{ string name; double mon;};int main(){ int num; (cin>>num).get(); int *c1=new int[num];//存储捐款超过10000的捐款个体 int count1=0;//记录捐款超过10000的个数 int *c2=new int[num];//存储捐款超过10000的捐款个体 int count2=0; juankuan *newjk=new juankuan[num]; int i=0; while(i
>newjk[i].mon; cin.get(); if(newjk[i].mon>10000) { c1[count1++]=i+1; } else { c2[count2++]=i+1; } i++; } cout<<"Grand Patrons: "<

 

转载于:https://www.cnblogs.com/lynnycy/p/3454807.html

你可能感兴趣的文章
Vue笔记:使用 axios 发送请求
查看>>
富文本编辑器 - RichEditor
查看>>
java webcontroller访问时报415错误
查看>>
qcow2、raw、vmdk等镜像格式
查看>>
Jzoj5455【NOIP2017提高A组冲刺11.6】拆网线
查看>>
特定字符序列的判断(1028)
查看>>
华为面试
查看>>
平衡二叉树(AVL Tree)
查看>>
【BZOJ3295】[Cqoi2011]动态逆序对 cdq分治
查看>>
【CF799E】Aquarium decoration 线段树
查看>>
大运飞天 鲲鹏展翅
查看>>
从ECMA到W3C
查看>>
软件工程--第十六周学习进度
查看>>
yii2 ActiveRecord多表关联以及多表关联搜索的实现
查看>>
搜狗输入法安装--ubuntu
查看>>
ps/2接口键盘的输入及显示
查看>>
Swift———a Glance(极客学院)笔记
查看>>
【poj3294-不小于k个字符串中最长公共子串】后缀数组
查看>>
java如何获取其它用户登录的真是IP地址
查看>>
Jquery通过指定层次关系获取元素
查看>>