Advertisement
desislava_topuzakova

Square of stars

Jan 8th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class task6_lection {
  4.     public static void main(String[] args) {
  5.  
  6.         Scanner scanner = new Scanner(System.in);
  7.  
  8.         int n = Integer.parseInt(scanner.nextLine());
  9.  
  10.         String firstAndLastRow = "";
  11.  
  12.         for (int i = 1; i <= n; i++) {
  13.             firstAndLastRow = "*";
  14.             System.out.print(firstAndLastRow);
  15.  
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement