Errores con una clase
Publicado por O. Alejandro (10 intervenciones) el 19/08/2005 01:25:53
Buenos días, tengo unos problemillas con una clase en Java:
Cuenta.java:6: cannot find symbol
symbol : class CuentaCheque
location: class Cuenta
CuentaCheque Juan = new CuentaCheque (1,100.00,10);
^
Cuenta.java:6: cannot find symbol
symbol : class CuentaCheque
location: class Cuenta
CuentaCheque Juan = new CuentaCheque (1,100.00,10);
^
Cuenta.java:7: package system does not exist
system.out.println(Juan.MostrarSaldo());
^
Cuenta.java:9: package system does not exist
if (! Juan.Retiro (300)) system.out.println ("Saldo menor");
^
4 errors
El código de la clase es este:
public class Cuenta
{
static public void main (String [] args)
{
CuentaCheque Juan = new CuentaCheque (1,100.00,10);
system.out.println(Juan.MostrarSaldo());
Juan.Deposito (30);
if (! Juan.Retiro (300)) system.out.println ("Saldo menor");
}
} //Fin Cuenta
Alguna idea, sugerencia o comentario será bien recibido.
De ante mano gracias por su ayuda.
Cuenta.java:6: cannot find symbol
symbol : class CuentaCheque
location: class Cuenta
CuentaCheque Juan = new CuentaCheque (1,100.00,10);
^
Cuenta.java:6: cannot find symbol
symbol : class CuentaCheque
location: class Cuenta
CuentaCheque Juan = new CuentaCheque (1,100.00,10);
^
Cuenta.java:7: package system does not exist
system.out.println(Juan.MostrarSaldo());
^
Cuenta.java:9: package system does not exist
if (! Juan.Retiro (300)) system.out.println ("Saldo menor");
^
4 errors
El código de la clase es este:
public class Cuenta
{
static public void main (String [] args)
{
CuentaCheque Juan = new CuentaCheque (1,100.00,10);
system.out.println(Juan.MostrarSaldo());
Juan.Deposito (30);
if (! Juan.Retiro (300)) system.out.println ("Saldo menor");
}
} //Fin Cuenta
Alguna idea, sugerencia o comentario será bien recibido.
De ante mano gracias por su ayuda.
Valora esta pregunta
0