Search:

Type: Posts; User: namenamename

Search: Search took 0.10 seconds.

  1. Re: How to make this triangle upside down in java?

    *
  2. Re: How to make this triangle upside down in java?

    output is this:
    http://i.imgur.com/Rd4FYZh.png
  3. How to make this triangle upside down in java?

    class upsidedown {
    public static void main(String args[]){
    int x,y;
    for (y= 1; y <= 5; y++)
    {
    for (x= 0; x < 5-y; x++)
    System.out.print(' ');
    ...
Results 1 to 3 of 3