package Capitulo_3;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */

import java.util.Random;


public class NumerosFlotantesAleatorios {
    
    static public void main(String args[]) {
        int i;
        Random rnd = new Random();
        
        for (i = 0; i < 10; i++) {
            System.out.println(rnd.nextDouble());;
        }
    }
}
