Run time error (compilation successfull)

import java.util.;
public class Main {
public static void main(String args[]) {
Scanner input=new Scanner(System.in);
int cel,fah,t;
t=input.nextInt();;
for(int i=0;i<t;i++) {
fah=input.nextInt();;
double temp;
double c=0.55;
temp=c
(fah-32);
cel=(int)temp;
System.out.println(fah+" "+cel);

}
}

}

@KUNAL.SHARMA5724510,
Your approach is incorrect.

You have to go from 0 to 100 with an increment of 20.

Minimum Fahrenheit = 0
Maximum Fahrenheit = 100
Increment Fahrenheit by = 20

Output will be:
Calculate corresponding Celsius for Fahrenheit. And print Fahrenheit followed by Celsius.

In this case Fahrenheit will be: 0,20,40,60,80,100.

You have to calculate Celsius for these and print them in the order Fahrenheit followed by Celsius.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.