Primera app en Java (consola)

Generar dos numeros

import java.util.Scanner;
 
class AddNumbers
{
   public static void main(String args[])
   {
      int x, y, z;
      System.out.print("Enter two integers to calculate their sum : ");
      Scanner in = new Scanner(System.in);
      x = in.nextInt();
      y = in.nextInt();
      z = x + y;
      System.out.println("Sum of entered integers = "+z);
   }
}

Comentarios

Entradas populares de este blog

Tim Berners-Lee padre de la web