diff --git a/Capitulo_6/1/Elton.rb b/Capitulo_6/1/Elton.rb new file mode 100644 index 0000000..d45ec55 --- /dev/null +++ b/Capitulo_6/1/Elton.rb @@ -0,0 +1,9 @@ +puts 'Qual a nota?' +nota = gets.to_f +if nota > 6 + puts 'Aprovado' + +else + puts 'Reprovado' + +end \ No newline at end of file