Pooja would like to withdraw X $US from an ATM. The cash machine will only accept the transaction if X is a multiple of 5, and Pooja's account balance has enough cash to perform the withdrawal transaction (including bank charges). For each successful withdrawal the bank charges 0.50 $US. Calculate Pooja's account balance after an attempted transaction.
#include <stdio.h>
#include <conio.h>
int main()
{
int w;
float t;
scanf("%d %f",&w, &t);
if(w + 0.5> t)
{
printf("%.2f",t);
}
else if(w%5 != 0)
printf("%.2f",t);
else
printf("%.2f", t-w-0.5);
return 0;
}