79269495

Date: 2024-12-10 19:22:47
Score: 0.5
Natty:
Report link

Try this one:

class DegreeCtoFahrenheit {

public static void main (String[] args)
{
    double tempInDegC = 30.2;
    var  tempInF = tempInDegC * (9/5) +32;
    System.out.println("Temperature in Fahrenheit is" + tempInF);
}
Reasons:
  • Whitelisted phrase (-1): Try this
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Yordan Petkov