From 5961bb1ef61505be395a55710fbfcf11d62a239c Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Sat, 18 Nov 2017 15:08:10 +0100 Subject: =?UTF-8?q?A=C3=B1adido=20esqueleto=20general=20de=20las=20solucio?= =?UTF-8?q?nes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AceptaElReto/src/problemas/SolucionBase.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AceptaElReto/src/problemas/SolucionBase.java diff --git a/AceptaElReto/src/problemas/SolucionBase.java b/AceptaElReto/src/problemas/SolucionBase.java new file mode 100644 index 0000000..8f275e6 --- /dev/null +++ b/AceptaElReto/src/problemas/SolucionBase.java @@ -0,0 +1,22 @@ +package problemas; + +public class SolucionBase { + + static java.util.Scanner in; + + public static void main(String args[]) { + in = new java.util.Scanner(System.in); + + int numCasos; + numCasos = in.nextInt(); + for (int i = 0; i < numCasos; i++) + casoDePrueba(); + } + + public static void casoDePrueba() { + int n; + n = in.nextInt(); + + // Procesamiento de cada caso + } +} -- cgit v1.2.1