public class Rounding { public static void main(String[] args) { double x = 85.0, y = 307; System.out.println("x / y = " + x / y); } }