Thursday, January 05, 2012

Solucion a 10055 - Hashmat the brave warrior [http://uva.onlinejudge.org] con Java

Solucion a 10055 - Hashmat the brave warrior [http://uva.onlinejudge.org] con Java
El enunciado esta en el siguiente link enunciado

import java.util.Scanner;

/**
 * 10055 - Hashmat the brave warrior [http://uva.onlinejudge.org]
 * 
 * @author BreakDark
 * @version 1.1 beta
 */
// ACEPTADO!!! xD
public class Main {
 public static void main(String[] args) {
  Scanner Lee; // para leer los datos de entrada
  long numH, numOP; // soldados de Hashman y del opositor

  // AQUI INICIA EL PROGRAMA
  Lee = new Scanner(System.in);
  while (Lee.hasNext()) {
   numH = Lee.nextLong();
   numOP = Lee.nextLong();
   System.out.println(Math.abs(numOP - numH));
  }
 }
}

No comments: