Skip to content

Instantly share code, notes, and snippets.

@catalunha
Last active June 7, 2021 18:25
Show Gist options
  • Save catalunha/584f2c211178057324d78c9424226d6a to your computer and use it in GitHub Desktop.
Save catalunha/584f2c211178057324d78c9424226d6a to your computer and use it in GitHub Desktop.
lista01pag04prog06a
/// lista01pag04prog06a
void main() {
//Entrada
int inicio = 1;
int fim = 5;
//Solucao
for (var i = inicio; i <= fim; i++) {
print('$i');
}
//Saida
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment