ARREGLO_CUATRO.java
/**
* @(#)ARREGLO_CUATRO.java
*
*
* @author
* @version 1.00 2010/12/5
*/
public class ARREGLO_CUATRO {
/**
* Creates a new instance of
ARREGLO_CUATRO
. */
public ARREGLO_CUATRO() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int valores[];
int i;
valores= new int[500];
System.out.println("ESTE ES EL ARREGLO ORIGINAL ");
for(i=0;i<500;i++)
{
valores[i]=i;
System.out.print(valores[i] + ", ");
}
System.out.println();
System.out.println("Y ESTE ES EL ARREGLO CON NUMERO ELEVADO AL CUADRADO ");
for(i=0;i<500;i++)
{
valores[i]=valores[i]*valores[i];
System.out.print(valores[i] + ", ");
}
}
}
Sign up here with your email
ConversionConversion EmoticonEmoticon