fork download
  1. class PatternDollar
  2. {
  3. public static void main(String[] args)
  4. {
  5. for(int row = 1; row <=5; row++)
  6. {
  7. for(int col = 1; col <= row; col++ )
  8. {
  9. System.out.print("$");
  10.  
  11. }
  12. System.out.println();
  13. }
  14. }
  15.  
  16. }
  17.  
Success #stdin #stdout 0.1s 27768KB
stdin
Standard input is empty
stdout
$
$$
$$$
$$$$
$$$$$