Last active
December 6, 2017 02:52
-
-
Save lucianoschillagi/ec79c0f3907fbe5200ce40bdc382c5fa to your computer and use it in GitHub Desktop.
Una función que resta el resultado de una suma y una multiplicación de dos enteros
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
/** | |
Esta función toma 4 parámetros. Los dos primeros son dos enteros que se suman y los dos últimos dos enteros que se multiplican. | |
Los resultados de estas dos operaciones son luego restados. | |
- parameter s1: un entero a sumar. | |
- parameter s2: otro entero a sumar. | |
- parameter m1: un entero a multiplicar. | |
- parameter m2: otro entero a multiplicar. | |
- returns: el resultado de la suma menos el resultado de la multiplicación. | |
*/ | |
func operacion(_ s1:Int, _ s2:Int, _ m1:Int, _ m2:Int) -> Int { | |
let s1:Int = s1 | |
let s2:Int = s2 | |
let m1:Int = m1 | |
let m2:Int = m2 | |
return (s1 + s2) - (m1 * m2) | |
} | |
// llamo a la función | |
operacion(4, 4, 2, 4) // prints 0 | |
operacion(6, 7, 6, 8) // prints -35 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment