package Lecture4; public class Rounding { public static void main(String[] args) { System.out.println("Número de veces que el inverso != 1"); for (int test=2; test < 100; test++) { float top= test; float bottom= 1.0F/test; if (top*bottom != 1.0F) System.out.println(test + " " + top*bottom); } } }