lunes, 15 de abril de 2013

Tabla de multiplicar Java


/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package calculadora;
import java.util.Scanner;

/**
 *
 * @author gamma4
 */
public class Calculadora {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
       
        int i,dato, Tablas;
       
        Scanner LEER = new Scanner(System.in);
       
        System.out.print("Intoduce un numero:");
        dato = LEER.nextInt();
       
        for(i=1;i<11;i++)
        {          
          Tablas = (i) * dato;
          System.out.println(dato + "*" + i + "="+ Tablas);
       
        }
        // TODO code application logic here
    }
}

No hay comentarios.:

Publicar un comentario

Es muy importante tu comentarios: