0
Algoritmo "SUPER CONTADOR"
//  
Var
   N1,cont : Inteiro
Inicio
  repita
    escreval ("===================") 
    escreval("|     MENU        |")
    escreval ("===================")
    escreval ("| [1] De 1 até 10 |")
    escreval ("| [2] De 10 até 1 |")
    escreval ("| [3] Sair        |")
    escreval ("===================")
    leia (N1)
    cont <- 1
    enquanto(cont < 10) faca <- o visualg está endentificando o erro nessa linha
      escreva (cont)
     cont <- cont + 1
    fimenquanto
  ate (N1 = 3)
Fimalgoritmo
Error on line 1 or error on any line ? Visualg does not use point and comma ";"?
– ayelsew
I’m not sure I can’t test the code at the moment. It seems that the loop does not use "()" parentheses in the expression. Ex
enquanto cont < 10 facainstead ofenquanto (cont < 10) facaComputer support– ayelsew
was the parentheses even worth there personal :)
– Daniel Dias