Código PHP:
public static String tipodato(int tipoint)
{
char tipo=' ';
tipo=(char)tipoint;
if(tipo=='i')
return "int";
else if(tipo=='c')
return "char";
else if(tipo=='b')
return "boolean";
return "String";
}
Código PHP:
System.out.println("Ingrese el nombre del atributo: ");
nombreatr= br.readLine();
while(!nombreatr.equals("#"))
{
System.out.println("Ingrese el tipo de atributo(s String, i int, c char, b boolean");
tipo=tipodato(System.in.read());
texto.println("private "+tipo+" "+nombreatr+";");
System.out.println("Ingrese el nombre del atributo: ");
nombreatr= br.readLine();
}
komo arreglo para ke pueda seguir ingresando normalmente???
eso..gracias