Swift 程序打印半菱形数字图案
本教程将讨论如何编写 Swift 程序以打印半菱形数字图案。
数字图案是一系列数字,用于开发不同的图案或形状,例如金字塔、矩形、十字架等。这些数字图案通常用于理解或练习程序流程控制,它们也有利于逻辑思维。
要创建半菱形数字图案,我们可以使用以下任何一种方法:
使用嵌套 for 循环
使用 init() 函数
使用 stride 函数
方法 1 - 使用嵌套 For 循环
我们可以使用嵌套 for 循环创建半菱形数字图案或任何其他图案。
算法
以下是算法:
步骤 1 - 声明变量以存储半菱形数字图案的高度
对于上半部分图案:
步骤 2 - 从 1 到 num 运行外部 for 循环。此循环处理要打印的行总数,并且每一行都以新行开头。
步骤 3 - 从 1 到 x 运行嵌套 for 循环。此循环用于打印上半部分菱形数字图案。对于下半部分菱形星形图案:
步骤 4 - 再次从 1 到 num-1 运行外部 for 循环。此循环处理要打印的行总数,并且每一行都以新行开头。
步骤 5 - 从 1 到 num-q 运行另一个嵌套 for 循环。此循环用于打印下半部分菱形数字图案。
示例
以下程序演示了如何使用嵌套 for 循环打印半菱形数字图案。
import Foundation import Glibc // Height of the half diamond numeric pattern let num = 9 // Outer for loop is used to handle the // total number of rows in upper half // diamond numeric pattern for x in 1...num{ // Nested for loop is used to print // upper half diamond numeric pattern for y in 1...x{ print(y, terminator: "") } // Add new line print("") } // Outer for loop is used to handle the // total number of rows in lower half // diamond numeric pattern for p in 1...num-1{ // Nested for loop is used to print // lower half diamond numeric pattern for q in 1...num-p{ print(q, terminator: "") } // Add new line print("") }
输出
1 12 123 1234 12345 123456 1234567 12345678 123456789 12345678 1234567 123456 12345 1234 123 12 1
方法 2 - 使用 init() 函数
Swift 提供了一个名为 String.init() 的内置函数。使用此函数,我们可以创建任何图案。String.init() 函数创建一个字符串,其中给定字符重复指定次数。
语法
以下是语法:
String.init(repeating:Character, count: Int)
这里,repeating 表示此方法重复的字符,count 表示给定字符在结果字符串中重复的总次数。
算法
以下是算法:
步骤 1 - 声明变量以存储半菱形星形图案的长度。
步骤 2 - 从 1 到 num 运行 for 循环。此循环使用 init() 函数打印上半部分菱形数字图案
for x in 1...num{ print(String.init(repeating: "22", count: x)) }
这里,在每次迭代中,init() 函数根据 x 的值打印“22”。例如,如果 x = 2,则 init() 打印“2222”。
步骤 3 - 从 1 到 num-1 运行另一个 for 循环。此循环使用 init() 函数打印下半部分菱形星形图案
for y in 1...num-1{ print(String.init(repeating: "33", count: num-y)) }
示例
以下程序演示了如何使用 string.init() 函数打印半菱形数字图案。
import Foundation import Glibc // Height of the half diamond numeric pattern let num = 4 // Creating upper half diamond numeric pattern // Using String.init() function for x in 1...num{ print(String.init(repeating: "22", count: x)) } // Creating lower half diamond numeric pattern // Using String.init() function for y in 1...num-1{ print(String.init(repeating: "33", count: num-y)) }
输出
22 2222 222222 22222222 333333 3333 33
方法 3 - 使用 stride 函数
Swift 提供了一个名为 stride() 的内置函数。stride() 函数用于从一个值以增量或减量移动到另一个值。或者我们可以说 stride() 函数从起始值返回一个序列,但不包括结束值,并且给定序列中的每个值都以给定量步进。
语法
以下是语法:
stride(from:startValue, to: endValue, by:count)
这里,
from - 表示要用于给定序列的起始值。
to - 表示限制给定序列的结束值
by - 表示每次迭代要步进的量,这里正值表示向上迭代或增量,负值表示向下迭代或减量。
示例
以下程序演示了如何使用 stride() 函数打印半菱形数字图案。
import Foundation import Glibc // Height of the half diamond numeric pattern let num = 3 // For upper half diamond numeric pattern for x in 1...num{ // Printing upper half diamond numeric pattern for y in 1...x{ print(y, terminator : "") } // Adding new line print(" ") } // For lower half diamond numeric pattern for m in 1...num-1{ // Printing lower half diamond numeric pattern for n in stride(from: num, to: m, by: -1){ print(n, terminator : "") } // Adding new line print(" ") }
输出
1 12 123 32 3