How to print Hollow Square Pattern in Swift


How to print Hollow Square Pattern in Swift ?

Answer

To print a Hollow Square Pattern in Swift, you can use nested loops. The outer loop controls the rows, and the inner loop controls the columns. Conditions are used to determine whether to print stars or spaces for the pattern.



✐ Examples

1 Print Hollow Square Pattern

In this example,

  1. We define a function named printHollowSquare that takes the side length n as a parameter.
  2. We use two nested for loops, one for rows and one for columns, to iterate through each cell of the square.
  3. Within the loops, we use conditions to check if we are at the border or inside the square, printing stars (*) for the border and spaces ( ) for the inside.
  4. Finally, we call printHollowSquare with the desired side length to print the pattern.

Swift Program

func printHollowSquare(n: Int) {
    for i in 0..<n {
        var row = ""
        for j in 0..<n {
            if i == 0 || i == n - 1 || j == 0 || j == n - 1 {
                row += "*"
            } else {
                row += " "
            }
        }
        print(row)
    }
}

let sideLength = 5
printHollowSquare(n: sideLength)

Output

* * * * *
*       *
*       *
*       *
* * * * *

Summary

In this tutorial, we learned How to print Hollow Square Pattern in Swift language with well detailed examples.




More Swift Pattern Printing Tutorials

  1. How to print Left Half Pyramid Pattern in Swift ?
  2. How to print Right Half Pyramid Pattern in Swift ?
  3. How to print Pyramid Pattern in Swift ?
  4. How to print Rhombus Pattern in Swift ?
  5. How to print Diamond Pattern in Swift ?
  6. How to print Hour Glass Pattern in Swift ?
  7. How to print Hollow Square Pattern in Swift ?
  8. How to print Hollow Pyramid Pattern in Swift ?
  9. How to print Hollow Inverted Pyramid Pattern in Swift ?
  10. How to print Hollow Diamond Pattern in Swift ?
  11. How to print Floyd's Trianlge Pattern in Swift ?
  12. How to print Pascal's Triangle Pattern in Swift ?