Ayuda con un metodo
Publicado por Katerine (1 intervención) el 01/04/2019 23:57:20
1
2
3
4
5
6
7
8
9
public static double floatToDec(String floatp){
double respuesta=0;
char [] aCaracteres = floatp.toCharArray();
for(int i=0;i<floatp.length();i++){
int numero=Integer.parseInt(new String(aCaracteres.charAt(i)));
respuesta=respuesta+Math.pow(2,numero);
}
return respuesta;
}
me tira error en .charAt(i) :'( nose porque
Valora esta pregunta
0