El enunciado esta en el siguiente link enunciado
import java.util.Scanner;
/**
* 1785 - Lost in Localization [http://acm.timus.ru]
*
* @author BreakDark
* @version 1.0 beta
*/
// ACEPTADO!!! xD
public class Main {
public static void main(String[] args) {
Scanner Lee; // para leer los datos de entrada
short n; // para el numero a evaluar
// AQUI INICIA EL PROGRAMA!!!
Lee = new Scanner(System.in);
while (Lee.hasNext()) {
n = Lee.nextShort();
// evaluamos
if (n > 4)
if (n > 9)
if (n > 19)
if (n > 49)
if (n > 99)
if (n > 249)
if (n > 499)
if (n > 999)
System.out.println("legion");
else
System.out.println("zounds");
else
System.out.println("swarm");
else
System.out.println("throng");
else
System.out.println("horde");
else
System.out.println("lots");
else
System.out.println("pack");
else
System.out.println("several");
else
System.out.println("few");
}
}
}
|