oi pessoal estou com problema nesse programa ele não que ser colpilado ?
sera que alguem pode me da uma ideia?
/*
- Main.java
- Created on 2 de Janeiro de 2008, 16:32
- To change this template, choose Tools | Template Manager
- and open the template in the editor.
*/
package soma;
/**
*
-
@author jamile
*/
import java.util.Scanner;
import java.util.Random;
public class Main {
/** Creates a new instance of Main */
public Main() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Random aleatorio = new Random();
Erros e = new Erros();
Acertos i = new Acertos();
int b = 0;
int a = 0;
int result1;
int n3;
int mutiplicado1 = aleatorio.nextInt(11);
int mutiplicado2 = aleatorio.nextInt(11);
int erro = aleatorio.nextInt(11);
int acerto = aleatorio.nextInt(6);
while(a != -1){
result1 = mutiplicado1 * mutiplicado2;
b = 0;
while(b > 0){
System.out.printf("Quanto é %d * %d? ", mutiplicado1,mutiplicado2);
n3 = input.nextInt();
if(result1 == n3){
Erros.ensetivo(erro);
}else{
i.parabens(acerto);
b++;
}
System.out.println("Desejar continuar aperte! 2\n\nSe desejar para ou desirte aperte -1! ");
a = input.nextInt();
if(a > 2){
int f = 0;
while(f != 2){
System.out.println("Desejar continuar aperte! 2\n\nSe desejar para ou desirte aperte -1! ");
f = input.nextInt();
}
}
}
}
}
}