c语言将1元5角兑换成,编写c语言程序 假定有 5 角、 1 角、 5 分、 2 分和 1 分共 5 种硬币,在 给顾客找硬币时,一般都会尽可能...

满意答案

dcebd7a0de6265b6ccae5ead692f1eab.png

zjhydtsq

2013.09.11

dcebd7a0de6265b6ccae5ead692f1eab.png

采纳率:54%    等级:12

已帮助:25580人

#include

void main(){

int n;

printf("输入要找的硬币总数:");

scanf("%d",&n);

int five_cent = 0;//5角

five_cent = n/50;

n -= five_cent * 50;

int one_cent = 0;//1角

one_cent = n/10;

n -= one_cent * 10;

int five_penny = 0;//5分

five_penny = n/5;

n -= five_penny * 5;

int two_penny = 0;//2分

two_penny = n/2;

n -= two_penny * 2;

int one_penny = 0;//1分

one_penny = n;

printf("5角:%d\n",five_cent);

printf("1角:%d\n",one_cent);

printf("5分:%d\n",five_penny);

printf("2分:%d\n",two_penny);

printf("1分:%d\n",one_penny);

}

02分享举报

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值