Finding the number of 500, 100, 50, 20, 10, 5, 2, 1
Program:
#include<stdio.h>
#include<conio.h>
void main()
{
int rs, a, b, c, d, e, f, g, h;
clrscr();
printf("Enter the amount in Rupees : ");
scanf("%d", &rs);
while(rs >= 500)
{
a = rs / 500;
printf("\nThe no. of five hundreds are : %d", a);
break;
}
while(rs >= 100)
{
b = rs / 100;
printf("\n\nThe no. of hundreds are : %d", b);
break;
}
while(rs >= 50)
{
c = rs / 50 ;
printf("\n\nThe no. of fifties are : %d", c);
break;
}
while(rs >= 20)
{
d = rs / 20;
printf("\n\nThe no. of twenties are : %d", d);
break;
}
while(rs >= 10)
{
e = rs / 10 ;
printf("\n\nThe no. of tens are : %d", e);
break;
}
while(rs >= 5)
{
f = rs / 5;
printf("\n\nThe no. of fives are : %d", f);
break;
}
while(rs >= 2)
{
g = rs / 2;
printf("\n\nThe no. of Twos are : %d", g);
break;
}
while(rs >= 1)
{
h = rs / 1;
printf("\n\nThe no. of ones are : %d", h);
break ;
}
getch();
}
Output:
Enter the amount in Rupees : 179
The no. of hundreds are : 1
The no. of fifties are : 3
The no. of twenties are : 8
The no. of tens are : 17
The no. of fives are : 35
The no. of Twos are : 89
The no. of ones are : 179
-
UpdatedDec 30, 2019
-
Views14,710
You May Like
Program to maintain employee details using structures
Program to maintain student details using structures
Check whether the person is eligible to vote or not
Print the numbers that are divisible by a given no.
Program to generate magic square
To sort the given numbers in ascending & descending order