Hey guys I'm a new Java learner. I have a problem with this code: I dont see why it prints only the value of a, and not of ((9/5)*a+32) for example if a = 50 , ((9/5)*a+32) = 82 but when I compile this it prints a=50 and ((9/5)*a+32)=82.
Scanner tt = new Scanner(System.in);
a = tt.nextInt();
System.out.println(a + " degrees °C match " + ((9/5)*a+32) + "°F");
Can someone explain this to me?!