Question 9.
[15]
The telephone department wishes to compute monthly telephone bills for the consumer using the
following rules on the basis of the call made:
Number of calls
Rate
First 100 calls
Rs. 1.25 per call
Next 100 calls
Rs. 0.40 per call
Next 100 calls
Rs. 0.20
per
call
Any call above 300 calls Rs. 0.10 per call
Write a program to input number of calls and compute total bill amount.
Answers
Answered by
1
Explanation:
#include <stdio.h>
int main()
{
int calls;
float bill;
printf("Enter number of calls :");
scanf("%d", &calls);
if (calls <= 100)
{
bill = 200;
}
else if (calls > 100 && calls <= 150)
{
calls = calls - 100;
bill = 200+(0.60 *calls);
}
else if (calls > 150 && calls <= 200)
{
calls = calls - 150;
bill = 200+(0.60 *50) + (0.50 *calls);
}
else
{
calls = calls - 200;
bill = 200 + (0.60 * 50) + (0.50 * 50) + (0.40 * calls);
}
printf("Your bill is Rs. %0.2f", bill);
return 0;
}
Similar questions