Build a Triangle using Java

Here is the code that let you print the triangle. 
  1. import java.util.Scanner;  
  2. class Triangle  
  3. {  
  4.    public static void main(String args[])  
  5.    {  
  6.       int n, c, d;  
  7.       Scanner in = new Scanner(System.in);  
  8.       System.out.println("Enter the number of rows of triangle you want");  
  9.       n = in.nextInt();  
  10.       System.out.println("Here is your triangle :-");  
  11.       for ( c = 1 ; c <= n ; c++ )  
  12.       {  
  13.          for ( d = 1 ; d <= c ; d++ )  
  14.          {  
  15.             System.out.print("*"+" ");  
  16.          }  
  17.          System.out.println();  
  18.       }  
  19.    }  
  20. }  
Thank you, keep learning and sharing.