Swift Basic Programming Exercise: Compute and return the absolute difference of n and 51
Swift Basic Programming: Exercise-2 with Solution
Write a Swift program to compute and return the absolute difference of n and 51, if n is over 51 return double the absolute difference.
Pictorial Presentation:
Sample Solution:
Swift Code:
func diff_51(x: Int) -> Int {
if x > 51
{
return (x - 51) * 2
}
else
{
return 51 - x
}
}
print(diff_51(x: 45))
print(diff_51(x: 61))
print(diff_51(x: 21))
Sample Output:
6 20 30
Swift Programming Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Swift program to compute and return the absolute difference of n and 51, if n is over 51 return double the absolute difference.
Next: Write a Swift program that accept two integer values and return true if one of them is 20 or if their sum is 20.
What is the difficulty level of this exercise?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/swift-programming-exercises/basic/swift-basic-exercise-2.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics