How to find the Minimum of Two Numbers in Swift - Step by Step Examples
How to find the Minimum of Two Numbers in Swift ?
Answer
To find the minimum of two numbers in Swift, you can use the built-in min
function.
✐ Examples
1 Find Minimum of Two Integer Numbers
In this example,
- We create two integer variables named
num1
andnum2
with specific values. - We use the
min
function to find the minimum ofnum1
andnum2
. - The
min
function returns the smaller of the two values. - Finally, we print the minimum value to standard output.
Swift Program
import Foundation
let num1 = 5
let num2 = 10
let minimum = min(num1, num2)
print("The minimum of \(num1) and \(num2) is: \(minimum)")
Output
The minimum of 5 and 10 is: 5
2 Find Minimum of Two Floating-Point Numbers
In this example,
- We create two floating-point variables named
num1
andnum2
with specific values. - We use the
min
function to find the minimum ofnum1
andnum2
. - The
min
function returns the smaller of the two values. - Finally, we print the minimum value to standard output.
Swift Program
import Foundation
let num1 = 15.5
let num2 = 10.3
let minimum = min(num1, num2)
print("The minimum of \(num1) and \(num2) is: \(minimum)")
Output
The minimum of 15.5 and 10.3 is: 10.3
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in Swift language with well detailed examples.