Advertisement
Spocoman

03. Square of Stars

Sep 25th, 2024
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.19 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5.     "strings"
  6. )
  7.  
  8. func main() {
  9.     var n int
  10.     fmt.Scanln(&n)
  11.    
  12.     for  i := 0; i < n; i++ {
  13.         fmt.Println(strings.Repeat("* ", n))
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement