热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

第9周编程任务-使用穷举法解决货币兑换问题

本文档介绍了通过穷举算法解决特定货币兑换问题的方法。代码示例展示了如何使用C++实现这一算法,以找出所有可能的兑换方案。

/*
* 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;
}


推荐阅读
author-avatar
手机用户2502923495
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有