public class utest { static int j; static char[] u = new char[500]; public static void main(String[] args) { j=20; for(char i=20; i<=500; i++){ u[i]=i; System.out.println(j+" = "+u[i]); j++; } } }