0
Ayuda con un código de java por favor
El programa debe generar los números del 0 al 255 , En un arreglo debe almacenar el número y en otro debe almacenar el caracter. public class CodigoAscii { public static void main(String[] args) { Scanner entrada=new Scanner(System.in); Char arreglo[]=new char[1]; Int arreglo1[]=new Int [1]; Int j=0; char p=0; for( j=0; j<=255 ; j++ ) { Arreglo[0]=j; Arreglo1[0]=p++; System.out.println("El codigo ASCII de la letra " + Arreglo[0]++ + " es " + arreglo1[0]); } }
3 Respostas
+ 6
Is this what you mean?
public class CodigoAscii
{
public static void main(String[] args)
{
char[] arreglo = new char[256];
int[] arreglo1 = new int[256];
for(int j = 0; j <= 255 ; j++)
{
arreglo[j] = (char)j;
arreglo1[j] = j;
System.out.println("El codigo ASCII de la letra " + arreglo[j] + " es " + arreglo1[j]);
}
}
}
+ 4
De nada : )
+ 1
Gracias Ipang ^-^