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

2022-08-05 社会 93阅读
#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);

}
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com