Posts by Gibas • 119 points
4 posts
-
1
votes1
answer29
viewsQ: How to make a component with variables of different types?
algoritmo "Analisador Numérico Procedimento" // Função : Analisar Números com procedimentos LOL // Autor : Rodrigo Matos Aguiar // Data : 17/10/2016 // Seção de Declarações var Cont, NA, S, ND5, NN,…
-
7
votes1
answer182
viewsQ: How to improve this algorithm?
The goal of my algorithm is to make the user train division: he will have to hit 10 times in a row the quotient whole (that is, without decimal places) and the rest of the division. I made this…
-
0
votes2
answers760
viewsA: How to solve this "Error in syntax"
The operator mod or % requires an integer type variable. In your case, you set the "seconds" variable to real, so you need to reset it to integer. The code would look like this: algoritmo "Duração…
-
0
votes1
answer566
viewsQ: Error: Duplicate name for procedure or function
I am training the use of procedures in Visualg and wanted to know why the code below presents the error: "Duplicate name for procedure or function: 'SEX'". Remembering, the main objective is not to…