Please tell me whats wrong in this code, please

,

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>

int main(void)
{
int x;
float y,z;

scanf("%d",&x);
scanf("%f",&y);

if(x%5==0)
{
if(x<y)
{
if(0<x&&x<=2000&&0<y&&y<=2000)
{

          z=y-x-0.5; 
          printf("%.2f",z);
        }

  }  
  if(x==y)
    printf("%.2f",y);
    
  if(x>y) 
    printf("%.2f",y);  

}
if(x%5!=0)
printf("%.2f",y);

return 0;

}

Consider the test input:

5 5.00

thanks a lott…, I changed please check it shows still wrong, please help

1 Like