This is what i got
public class CharacterArithmeticExperiment {
public static void main(String[] args) {
char start = '1';
for(int i = 1; i < 500;i++){
System.out.printf("%c", start + i);
}
}
}
output:
23456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~????????????????????????????????������������������������������������������������������������������������������������������������??????????????????????????????????????????????????????????????????????????????????��????????????��??????????????????????�????��???????????????????�??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
That's the problem, do i need something else to properly display this, or whats up with this, I haven't learned too much on characters, but i know darn well there's more characters than that, and i really want to see them any help is greatly appreciated.