Calculate Floyd Triangle In Number Program Using Java

  1. // program for floyd triangle in numbers  
  2.   
  3. import java.io.*;  
  4.   
  5. public class ssva09  
  6.   
  7. {  
  8.  public static void main(String arg[]) throws IOException  
  9.  {  
  10.   int i,j,s=0,n;  
  11.   BufferedReader inp=new BufferedReader(new InputStreamReader(System.in));  
  12.   System.out.println("\n\t\tFloyd Triangle in Numbers");  
  13.   System.out.print("\nEnter the value of N:   ");  
  14.   n=Integer.parseInt(inp.readLine());  
  15.   if (n==0)  
  16.   {  
  17.     System.out.println("\nPlease Enter greater than Zero\n");  
  18.     return;  
  19.   }  
  20.   for (i=1;i<=n;i++)  
  21.   {  
  22.     for (j=1;j<=i;j++)  
  23.     {  
  24.      s++;  
  25.      System.out.print("\t" + s);  
  26.     }  
  27.     System.out.println();  
  28.  }  
  29. }  
  30. }