Thursday, January 05, 2012

Solucion a 10071 - Back to High School Physics [http://uva.onlinejudge.org] con Java

Solucion a 10071 - Back to High School Physics [http://uva.onlinejudge.org] con Java
El enunciado esta en el siguiente link enunciado

import java.util.Scanner;

/**
 * 10071 - Back to High School Physics [http://uva.onlinejudge.org]
 * 
 * @author BreakDark
 * @version 1.1 beta
 */
// ACEPTADO!!!
public class Main {
 public static void main(String[] args) {
  Scanner Lee; // para leer los datos de entrada
  byte v; // para la velocidad
  short t; // para el tiempo

  // AQUI INICIA EL PROGRAMA
  Lee = new Scanner(System.in);
  while (Lee.hasNext()) {
   v = Lee.nextByte();
   t = Lee.nextShort();
   System.out.println(v * 2 * t);
  }
 }
}

No comments: