How can I put numbers In a column from left to right?

thefry76

My assignment is to using loops output this

1 2 3 4 5 6

2 3 4 5 6 7

3 4 5 6 7 8

4 5 6 7 8 9

5 6 7 8 9 10

As of now my program

public class Assigment10 

{

public static void main(String[] args) 

{
        for(int i = 1; i < 7; i++)

{


System.out.print(i + "  ");
    }

        for(int i = 2; i < 8; i++)
    {       
        System.out.print(i + "  ");
    }

        for(int i = 3; i < 9; i++)
    {       
        System.out.print(i + " ");
    }

        for(int i = 4; i < 10; i++)
    {       
        System.out.print(i + "  ");
    }
        for(int i = 5; i < 11; i++)
    {       
        System.out.print(i + "  ");
    }



}
}

Outputs 1 2 3 4 5 6 2 3 4 5 6 7 Ect, using \r \n gives me vertical positions for the numbers is there a way to get the orientation I need?

rdonuk

Use System.out.println(); after each loop except the last one.

public class Assigment10 {

    public static void main(String[] args)

    {
        for (int i = 1; i < 7; i++) {
            System.out.print(i + "  ");
        }
        System.out.println();

        for (int i = 2; i < 8; i++) {
            System.out.print(i + "  ");
        }
        System.out.println();

        for (int i = 3; i < 9; i++) {
            System.out.print(i + "  ");
        }
        System.out.println();

        for (int i = 4; i < 10; i++) {
            System.out.print(i + "  ");
        }
        System.out.println();

        for (int i = 5; i < 11; i++) {
            System.out.print(i + "  ");
        }

    }
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Bootstrap 3 - How can I put the left and right borders of the image?

From Dev

How can I fill RecyclerView with GridLayoutManager from right to left

From Dev

How can I animate from left to right the searchbar in a searchdisplaycontroller?

From Dev

How can I type from right to left with phpword

From Dev

How can I put image file on the left side and texts on the right side

From Dev

Can i change the gutter from right to left?

From Dev

How can I create 2 equal height columns with the right column inside the left column?

From Dev

How can I create even column with items in them left and right aligned

From Dev

How can I define a far left column and two far right columns using Grid.ColumnDefinitions

From Dev

How can I put these numbers in list?

From Dev

How can I stop my recyclerview from allowing left swipe and only allow right swipe?

From Dev

how can I move yAxis labels from Right of chart to left of chart in highstock

From Dev

how can i create a function to implement lambda from right to left in Lisp

From Dev

How can I use react-spring useTransition to go from left to right or viceversa

From Dev

How can I use react-spring useTransition to go from left to right or viceversa

From Dev

How can I remove the left and right space from first & last images?

From Dev

How i can make a "slider" from right to left (or whatever) by clicking on Nav arrow

From Dev

How can I move a sprite directly from the right to the left side of the screen?

From Dev

How can I get all lines of output to print from left to right?

From Dev

How can I create a regex to match the inner-most match or work from right-to-left?

From Dev

How Can I crop an image to smaller size from left to right and top to bottom with openCV Python3.5

From Dev

Can I move an animated line from right to left?

From Dev

Can I move an animated line from right to left?

From Dev

Excel - How to Convert / Reverse the Column Sequence from Right to Left

From Dev

How to put a div at left or right in pure CSS?

From Dev

How can I add text on the left and right of my Panel Title?

From Dev

How can I create a multilingual android application for right to left languages?

From Dev

How can I map the left and right shift key individually?

From Dev

How can i Convert left vertical menu to right?

Related Related

  1. 1

    Bootstrap 3 - How can I put the left and right borders of the image?

  2. 2

    How can I fill RecyclerView with GridLayoutManager from right to left

  3. 3

    How can I animate from left to right the searchbar in a searchdisplaycontroller?

  4. 4

    How can I type from right to left with phpword

  5. 5

    How can I put image file on the left side and texts on the right side

  6. 6

    Can i change the gutter from right to left?

  7. 7

    How can I create 2 equal height columns with the right column inside the left column?

  8. 8

    How can I create even column with items in them left and right aligned

  9. 9

    How can I define a far left column and two far right columns using Grid.ColumnDefinitions

  10. 10

    How can I put these numbers in list?

  11. 11

    How can I stop my recyclerview from allowing left swipe and only allow right swipe?

  12. 12

    how can I move yAxis labels from Right of chart to left of chart in highstock

  13. 13

    how can i create a function to implement lambda from right to left in Lisp

  14. 14

    How can I use react-spring useTransition to go from left to right or viceversa

  15. 15

    How can I use react-spring useTransition to go from left to right or viceversa

  16. 16

    How can I remove the left and right space from first & last images?

  17. 17

    How i can make a "slider" from right to left (or whatever) by clicking on Nav arrow

  18. 18

    How can I move a sprite directly from the right to the left side of the screen?

  19. 19

    How can I get all lines of output to print from left to right?

  20. 20

    How can I create a regex to match the inner-most match or work from right-to-left?

  21. 21

    How Can I crop an image to smaller size from left to right and top to bottom with openCV Python3.5

  22. 22

    Can I move an animated line from right to left?

  23. 23

    Can I move an animated line from right to left?

  24. 24

    Excel - How to Convert / Reverse the Column Sequence from Right to Left

  25. 25

    How to put a div at left or right in pure CSS?

  26. 26

    How can I add text on the left and right of my Panel Title?

  27. 27

    How can I create a multilingual android application for right to left languages?

  28. 28

    How can I map the left and right shift key individually?

  29. 29

    How can i Convert left vertical menu to right?

HotTag

Archive