How to print Rhombus Pattern in Swift - Step by Step Examples
How to print Rhombus Pattern in Swift ?
Answer
To print a rhombus pattern in Swift, you can use nested loops to control the number of spaces and asterisks printed on each line. The pattern is symmetrical and consists of an upper and lower part.
✐ Examples
1 Rhombus pattern of height 5
In this example,
- We start by defining a constant
nwith a value of5, which represents the height of the rhombus. - Next, we use a
forloop to iterate from1ton. This loop controls the number of rows in the upper part of the rhombus. - Within the outer loop, we initialize an empty string
rowto build the content of the current row. - We then use another
forloop to add spaces to therowstring. The number of spaces is equal ton - i, whereiis the current row number. This ensures that the rhombus is centered. - After adding the spaces, we use another
forloop to add asterisks to therowstring. The number of asterisks is equal ton, which creates the width of the rhombus. - We then print the
rowstring, which represents the current row of the upper part of the rhombus. - To create the lower part of the rhombus, we use another
forloop to iterate from1ton-1. - Within this outer loop, we initialize an empty string
rowto build the content of the current row. - We then use another
forloop to add spaces to therowstring. The number of spaces is equal toi, whereiis the current row number. This ensures that the rhombus is centered. - After adding the spaces, we use another
forloop to add asterisks to therowstring. The number of asterisks is equal ton, which creates the width of the rhombus. - We then print the
rowstring, which represents the current row of the lower part of the rhombus.
Swift Program
let n = 5
for i in 1...n {
var row = ""
for _ in 0..<(n - i) {
row += " "
}
for _ in 0..<n {
row += "*"
}
print(row)
}
for i in 1..<n {
var row = ""
for _ in 0..<i {
row += " "
}
for _ in 0..<n {
row += "*"
}
print(row)
}Output
*****
*****
*****
*****
*****
*****
*****
*****
*****2 Rhombus pattern of height 3
In this example,
- We start by defining a constant
nwith a value of3, which represents the height of the rhombus. - Next, we use a
forloop to iterate from1ton. This loop controls the number of rows in the upper part of the rhombus. - Within the outer loop, we initialize an empty string
rowto build the content of the current row. - We then use another
forloop to add spaces to therowstring. The number of spaces is equal ton - i, whereiis the current row number. This ensures that the rhombus is centered. - After adding the spaces, we use another
forloop to add asterisks to therowstring. The number of asterisks is equal ton, which creates the width of the rhombus. - We then print the
rowstring, which represents the current row of the upper part of the rhombus. - To create the lower part of the rhombus, we use another
forloop to iterate from1ton-1. - Within this outer loop, we initialize an empty string
rowto build the content of the current row. - We then use another
forloop to add spaces to therowstring. The number of spaces is equal toi, whereiis the current row number. This ensures that the rhombus is centered. - After adding the spaces, we use another
forloop to add asterisks to therowstring. The number of asterisks is equal ton, which creates the width of the rhombus. - We then print the
rowstring, which represents the current row of the lower part of the rhombus.
Swift Program
let n = 3
for i in 1...n {
var row = ""
for _ in 0..<(n - i) {
row += " "
}
for _ in 0..<n {
row += "*"
}
print(row)
}
for i in 1..<n {
var row = ""
for _ in 0..<i {
row += " "
}
for _ in 0..<n {
row += "*"
}
print(row)
}Output
*** *** *** *** ***
Summary
In this tutorial, we learned How to print Rhombus Pattern in Swift language with well detailed examples.
More Swift Pattern Printing Tutorials
- How to print Left Half Pyramid Pattern in Swift ?
- How to print Right Half Pyramid Pattern in Swift ?
- How to print Pyramid Pattern in Swift ?
- How to print Rhombus Pattern in Swift ?
- How to print Diamond Pattern in Swift ?
- How to print Hour Glass Pattern in Swift ?
- How to print Hollow Square Pattern in Swift ?
- How to print Hollow Pyramid Pattern in Swift ?
- How to print Hollow Inverted Pyramid Pattern in Swift ?
- How to print Hollow Diamond Pattern in Swift ?
- How to print Floyd's Trianlge Pattern in Swift ?
- How to print Pascal's Triangle Pattern in Swift ?