int f=100, C;
c= (f - 32)/9 * 5;
System.out.println(c);
Answers
Answered by
0
You have to use:
public static void main(String args[]) {
int f=100, c;
c= (f - 32)/9 * 5;
System.out.println(c);
}
in your class.
Similar questions