Search:

Type: Posts; User: samadniz

Search: Search took 0.13 seconds.

  1. Replies
    3
    Views
    1,796

    Re: Nested For Loop!

    Hahaha, I dnt wanna annoy any one, And thx for your encouragement....
  2. Replies
    3
    Views
    1,398

    Re: Help me out with this nested for loop plz..

    Hahaha. Hey listen, can u plz help me, I have wasted alot of tym on this *** for loop!
  3. Replies
    3
    Views
    1,398

    Help me out with this nested for loop plz..

    IAM CONFUSED WITH j = i part? Some one help me plz...

    class Nested {
    public static void main(String args[]) {
    int i, j;
    for(i=0; i<10; i++) {
    for(j=i; j<10; j++)
    System.out.print(".");...
  4. Replies
    3
    Views
    1,796

    Nested For Loop!

    can someone plz tell me how this nested for loop is generating this output... :(

    class Nested {
    public static void main(String args[]) {
    int i, j;
    for(i=0; i<10; i++) {
    for(j=i; j<10; j++)...
  5. Replies
    2
    Views
    1,205

    How is this nested for loop working!

    class Nested {
    public static void main(String args[]) {
    int i, j;
    for(i=0; i<10; i++) {
    for(j=i; j<10; j++)
    System.out.print(".");
    System.out.println();
    }
    }
    }
Results 1 to 5 of 5