Advertisement
desislava_topuzakova

triangle

Apr 16th, 2018
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1.  
  2.  
  3. public class test {
  4.     public static void main(String[] args)
  5.     {
  6.         for (String star = "*"; star.length() <=10; star+="*")
  7.             System.out.println(star);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement