Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
#include<conio.h>
int main()
{
int num,q100,r100,q50,r50,q10;
printf("Please enter the amount to be withdrawn: ");
scanf("%d",&num);
q100=num/100;
r100=num%100;
q50=r100/50;
r50=num%50;
q10=r50/10;
printf("Requirement of 100 %d\n",q100);
printf("Requirement of 50 %d\n",q50);
printf("Requirement of 10 %d\n",q10);
return 0;
}

You might also like