in test case is not pass…what is that and please provide me right code
import java.util.;
public class Main {
public static void main(String args[]) {
// Your Code Here
Scanner sc = new Scanner(System.in);
int Fmin= sc.nextInt();
int Fmax= sc.nextInt();
int step= sc.nextInt();
if(0 < Fmin && Fmin< 100 && Fmin<Fmax && Fmax< 500 && 0 < step)
{
int Fcurrent = Fmin;
while(Fcurrent <=Fmax)
{
int cel = (int)((5.0/9)(Fcurrent - 32));
System.out.println(Fcurrent + “\t” + cel);
Fcurrent = Fcurrent +step;
}
}