package bisiesto;
import javax.swing.*;
class numeros {
public static void main(String[] args) throws Exception
{
int matriz[]= new int [50];
int nn=0;
String solucion = "";
for (int n=1; n < 101;n++)
{
if (n%2 == 0)
{
matriz[nn]=n;
solucion = solucion + " " + String.valueOf(matriz[nn]);
nn++;
}
}
JOptionPane.showMessageDialog(null, solucion);
}
}
1 comentario:
Hola, me sale un error en el public void
Publicar un comentario