• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Unable to find bug in this code.

 
Ranch Hand
Posts: 94
1
Oracle Notepad Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wrote the following code to print a matrix diagonally



suppose the matrix is [[3,1,6],[8,6,4]] the matrix "a" that I have declared in the program in line 4 should be like [[3],[1,8],[6,6],[4]], but instead of that it is becoming like
[[3,1,6,8,6,4],[3,1,6,8,6,4],[3,1,6,8,6,4],[3,1,6,8,6,4]]. I know the bug is in the first nested for loop but I am unable to catch it. Please help me.
 
reply
    Bookmark Topic Watch Topic
  • New Topic