Jump to content

for loop in a for loop


svush

Recommended Posts

So you are trying to do it in Java then.

 

I can't help because I don't write Java, so I've moved it to the Java forum. I can tell you there is no reason you need more than one loop. Here's the PHP code:

 

<?php
for($i=0; $i<=9; $i++){
   if(!isset($string)){
        $string = "$i";
   }else{
   	$string = $i.$string;
   }
   echo $string.'<br>';
}
?>

 

PS: If this is homework, you need to learn to do it yourself. See the rules.

Link to comment
Share on other sites

  • 3 weeks later...

I think maybe the point was to get you to look at how to control the flow of nested loops ...

 


public class Answer {
   public static void main(String argv[]) {
       for ( int start = 0; start <= 9; start++ ){
           System.out.printf("%d", start);
           for ( int inner = start-1; inner>=0; inner-- ){
               System.out.printf("%d", inner);
           }
           System.out.print("\n");
       }
   }
}

 

Jessica is right, you should try to do this for yourself, at the very least make sure you understand the answer, look for ways to improve it, perhaps find another way using a different control structure ...

 

Have fun :)

Edited by krakjoe
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.