📌  相关文章
📜  编写一个 Python 程序来计算给定数量的音符总数. - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:46.382000             🧑  作者: Mango

代码示例3
int  a[8]={500,100,50,20,10,5,2,1},m,temp,i; 
 
    printf("Enter the amount:");
 
    scanf("%d",&m);
    temp=m;
     for(i=0;i<8;i++)
    {
     printf("\n%d notes is:%d",a[i],temp/a[i]);
     temp=temp%a[i];