作者:手机用户2502923495 | 来源:互联网 | 2024-11-30 08:46
/*
* Copyright (c) 2014, 烟台大学计算机学院
* All rights reserved.
* 文件名称: currencyExchange.cpp
* 作者: 张三
* 完成日期: 2014年12月1日
* 版本号: v1.0
*/
#include
using namespace std;
int main() {
int oneCent, twoCents, fiveCents, totalSolutiOns= 0;
cout <<"使用1元人民币兑换1分、2分和5分硬币的所有可能方案如下:" < for (OneCent= 0; oneCent <= 100; oneCent++) {
for (twoCents = 0; twoCents <= 50; twoCents++) {
for (fiveCents = 0; fiveCents <= 20; fiveCents++) {
if (oneCent + 2 * twoCents + 5 * fiveCents == 100) {
++totalSolutions;
cout <<"方案" < }
}
}
}
return 0;
}