Skip to content

Instantly share code, notes, and snippets.

@jacbar
Created October 12, 2010 19:23
Show Gist options
  • Save jacbar/622760 to your computer and use it in GitHub Desktop.
Save jacbar/622760 to your computer and use it in GitHub Desktop.
static void ExerciseThree(){
int k=0;
for(int i=32;i<=255;i++){
if(k%10==0) System.out.printf("\n%d = %c",i,(char)i);
else System.out.printf("\t%d = %c",i,(char)i);
k++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment