Home »
Swift »
Swift Programs
Swift program to assign multiple variables in a single statement
Here, we are going to learn how to assign multiple variables in a single statement in Swift programming language?
Submitted by Nidhi, on May 30, 2021
Problem Solution:
Here, we will assign value to the multiple variables using the assignment "=" operator and print the result on the console screen.
Program/Source Code:
The source code to assign multiple variables in a single statement is given below. The given program is compiled and executed successfully.
// Swift program to assign multiple variables
// in a single statement
import Swift;
var num1=0;
var num2=0;
(num1, num2) = (50, 60);
print("Num1: ",num1);
print("Num2: ",num2);
Output:
Num1: 50
Num2: 60
...Program finished with exit code 0
Press ENTER to exit console.
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
import Swift;
Here, we created two variables num1, num2 that are initialized with 0. Then we assigned the values to the num1, num2 variables using the assignment operator. After that, we printed the value of variables on the console screen.
Swift Basic Programs »