fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. char[] x = {'a','b','c'};
  6. char[] y = {'d','e'};
  7.  
  8. for(int a = 0; a<x.length;a++){ //x.length=3
  9. System.out.print(x[a] + "");
  10.  
  11. for(int b = 0; b<y.length;b++){ //y.length=2
  12. System.out.print(y[b] + "");
  13. }
  14. }
  15. }
  16. }
Success #stdin #stdout 0.13s 55392KB
stdin
Standard input is empty
stdout
adebdecde