一个简单的程序,可以在我的系统上舒适地运行,但是在在线IDE上显示此错误。请指导。
public class Whatever
{
public static void main (String[] args) throws java.lang.Exception
{
Scanner sc=new Scanner(System.in);
float wd=sc.nextFloat();
float bal=sc.nextFloat();
if (wd%5==0&&bal>(wd+0.50))
System.out.println(bal-wd-0.50);
else
System.out.println(bal);
}
}