找钱c语言
发布时间: 2024-06-11 18:34:51
这个问题不是很难,我写了就怕你看不懂,不懂问我啊,4个循环就可以了.
qq 64924930
调试通过!
main()
{
int i,a[5],b[4],c[4];
/* define the type of the money*/
a[1]=25;
a[2]=10;
a[3]=5;
a[4]=1;
printf("please input you money (fen):\n");
scanf("%d",&b[0]);
for (i=1;i<=4;i++)
{
b[i]=b[i-1]%a[i]; /*take n 25 off and money left*/
c[i]=(b[i-1]-b[i])/a[i]; /* n */
printf("%d is %d\n",a[i],c[i]);
}
getch();
}
‘贰’ 硬币找零(用C语言或C++)
和下面这道题目基本一样,改动一点数字以及输出语句就好了。
http://..com/question/418040990.html?oldq=1
热点内容