1
I have a work in pseudocode, where I needed to create a function to receive a user value and do the mod by 2, so I did so:
Função Módulo (x,b=2: inteiro) : inteiro
Var
i:inteiro
Inicio
Escreva("Digite um número:")
Leia (x)
i=x mod b
Escreva("O módulo de "+x+" é "+i)
Fim_função"
I can add the value 2 to the variable b within the parameter?
Yes, this will leave the variable with a default value if you call this function and do not enter the second parameter, it will use the set value as default.
– Kayo Bruno