main()
{
int ten,fifty,hundred,cash;
printf("Enter amount in multiple of hundred\n");
scanf("%d",&cash);
ten=cash/10;
fifty=cash/50;
hundred=cash/100;
printf("Cashier will have to give %d ten rupees notes\n or \nCashier will have to give %d fifty rupees notes\n or \nCashier will have to give %d hundred rupees notes\n",ten,fifty,hundred);
}
output:-
Its wrong bro
ReplyDeleteNyc
ReplyDelete