Advertisement
tchenkov

L06u01_RectangleOfStars

Feb 16th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package Uprajneniq;
  2.  
  3. /**
  4.  * Created by todor on 15.02.2017 г..
  5.  */
  6. public class u01_RectangleOfStars {
  7.     public static void main(String[] args) {
  8.         String stars = "**********";
  9.         for (int i = 0; i < 10; i++) {
  10.             System.out.println(stars);
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement