Advertisement
Guest User

Untitled

a guest
Dec 11th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. String stars = "*";
  8.  
  9. for (int i = 1; i <= 10; i++)
  10. {
  11. System.out.println(stars);
  12. stars+= "*";
  13. }
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement