Skip to content

Instantly share code, notes, and snippets.

@bitwiser
Created February 25, 2014 19:10
Show Gist options
  • Save bitwiser/9215498 to your computer and use it in GitHub Desktop.
Save bitwiser/9215498 to your computer and use it in GitHub Desktop.
class printCombo{
public static void main(String srgs[]){
int i,j;
String s = "abcde";
for(i=0;i<5;i++){
for(j=0;j<5;j++){
System.out.println(s.charAt(i)+""+s.charAt(j));
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment