18/12/2012, 10:44
|
| | | Fecha de Ingreso: febrero-2011 Ubicación: Argentina
Mensajes: 281
Antigüedad: 13 años, 11 meses Puntos: 3 | |
Respuesta: Error de netbeans?
Código:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package quiniela;
import java.util.Scanner;
/**
*
* @author Usuario
*/
public class Quiniela {
Scanner teclado = new Scanner(System.in);
String[][] apuestas = new String [15][15];
void apostar(){
for (int x=0; x<apuestas.length; x++){
for (int i=0; i<1;i++)
{
System.out.println("Ingresa tu apuesta para el partido numero "+(x+1)+":");
String apuesta=teclado.next();
apuestas[x][i]=apuesta;
}
}
}
public static void main(String[] args) {
Quiniela qweqwed = new Quiniela();
qweqwed.apostar();
}
}
pero con cosas nuevas xd |