Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tabuada #327

Open
ines1gomes opened this issue Oct 30, 2024 · 1 comment
Open

tabuada #327

ines1gomes opened this issue Oct 30, 2024 · 1 comment
Labels

Comments

@ines1gomes
Copy link

Descrição do problema

não está a executar e não percebo o problema

Código

programa {
  funcao inicio() {
  // Declarar variaveis
  inteiro x, i

  // Atribuimos um valor a variaveis
  escreva("Digite um número para ver a tabuada: ")
  leia(x)
  
  // Loop para imprimir a tabuada de x
  para (i = 0; i <= 10; i = i + 1) {
    escreva(x, " * ", i, " = ", x * i, "\n")
  }
finalgoritmo
  }
}

Comentários adicionais

No response

@ines1gomes ines1gomes added the bug label Oct 30, 2024
@ronneyns
Copy link

Correção: retire ou comente a palavra "finalgoritmo" porque a linguagem está pensando que se trata de uma função.

Dica importante:

  • quando estiver programando e der um erro de compilação ou de execução, leia com atenção a mensagem para poder analisar o que houve e fazer os devidos reparos no código.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants