java:triangle equilateral

java:triangle equilateral - Java - Programmation

Marsh Posté le 16-03-2012 à 20:45:16    

bonjour
je veux transformer ce prg en triangle équilatéral

Code :
  1. public class WhileTest 
  2. {   
  3.  
  4.     public static void main(String[] args) throws Exception
  5.    {
  6.     int k=0;
  7.     System.out.println();
  8.     for(int i = 0; i <7; i++)
  9.    {
  10.        for(int j = 0; j <i; j++)
  11.        {
  12.           k = k + 1;
  13.           System.out.print(k);
  14.           System.out.print(" " );
  15.        }
  16.        System.out.println("" );
  17.   }
  18. }
  19. }


quelqu'un peut peux m'aider svp
***** 1
**** 2 2
****3 3 3
** 4 4 4 4
**5 5 5 5 5
ainsi de suite

Reply

Marsh Posté le 16-03-2012 à 20:45:16   

Reply

Marsh Posté le 17-03-2012 à 14:38:28    

personne pour m'aider

domxaline a écrit :

bonjour
je veux transformer ce prg en triangle équilatéral

Code :
  1. public class WhileTest 
  2. {   
  3.  
  4.     public static void main(String[] args) throws Exception
  5.    {
  6.     int k=0;
  7.     System.out.println();
  8.     for(int i = 0; i <7; i++)
  9.    {
  10.        for(int j = 0; j <i; j++)
  11.        {
  12.           k = k + 1;
  13.           System.out.print(k);
  14.           System.out.print(" " );
  15.        }
  16.        System.out.println("" );
  17.   }
  18. }
  19. }


quelqu'un peut peux m'aider svp
***** 1
**** 2 2
****3 3 3
** 4 4 4 4
**5 5 5 5 5
ainsi de suite


Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed