Q:

Swift program to demonstrate the assignment operators

belongs to collection: Swift Basic Programs

0

Here, we will perform the assignment and compound assignment operations using the assignment operators and print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the assignment operators is given below. The given program is compiled and executed successfully.

// Swift program to demonstrate the
// assignment operator

import Swift;

var num1=23;
var num2=10;
var res = 0;

print("Num1 :",num1);
print("Num2 :",num2);

res = num1+num2;
print("Result(=) :",res);

res += num1;
print("Result(+=) :",res);

res -= num1;
print("Result(-=) :",res);

res *= num1;
print("Result(*=) :",res);

res /= num1;
print("Result(/=) :",res);

Output:

Num1 : 23
Num2 : 10
Result(=) : 33
Result(+=) : 56
Result(-=) : 33
Result(*=) : 759
Result(/=) : 33

...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 three integer variables num1num2res, that are initialized 23, 10, 0 respectively. Then we performed all assignment operations using the built-in assignment and compound assignment operators and printed the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Swift Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Swift program to assign multiple variables in a si... >>
<< Swift program to demonstrate the arithmetic operat...