Skip to content

Instantly share code, notes, and snippets.

@catalunha
Last active April 4, 2024 23:54
Show Gist options
  • Save catalunha/2b557dc2cd332a77f34dbde8ff63df64 to your computer and use it in GitHub Desktop.
Save catalunha/2b557dc2cd332a77f34dbde8ff63df64 to your computer and use it in GitHub Desktop.
lista01pag01prog01
/// lista01pag01prog01
void main() {
//Entrada
int a = 11;
int b = 2;
//Solucao
int maior;
if (a > b) {
maior = a;
} else {
maior = b;
}
//Saida
print('Maior entre $a e $b é $maior');
}
@esterfigueiredo
Copy link

Sim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment