I have a work in pseudocode, where I needed to create a function to receive a value from the user and make the mod by 2, so I did this:
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"
Can I add value 2 to variable b within the parameter?