文章
37
粉丝
98
获赞
69
访问
30.4k
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
struct drink {
int nums;
double price;
double singlePrice;
};
bool cmp(struct drink a, struct drink b) {
return a.singlePrice > b.singlePrice;
}
int main()
{
int x, n,cnt=0;
struct drink d[100];
while (cin >> x >> n) {
if (x == -1 && n == -1) {
break;
}
for (int i = 0; i < n; i++) {
cin >> d[i].nums >> d[i].price;
d[i].singlePrice = d[i].nums / d[i].price;
}
...
登录后发布评论
暂无评论,来抢沙发