Switch assignments for variables x and y, for example
start with x = 1 and y = 3 end with y = 1 and x = 3
Do NOT simply re-assign variables, use a temporary variable 'z'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers508
Suggested Problems
-
17443 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3708 Solvers
-
Check if number exists in vector
14282 Solvers
-
426 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
359 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Why insist on a temporary variable when it is unnecessary??