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

code improved #120

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 18 additions & 8 deletions exercicios/modulo-01/ex008/index.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,32 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<style>
body{
margin: 5%;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

}


</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Outras formatações</title>
</head>
<body>
<h1>Outras formatações</h1>
<h2>Código-fonte / Pré-formatação</h2>
<p>O comando <code>document.getElementById('teste')</code> é escrito em linguagem JavaScript.</p>
<p>O comando <code>document.getElementById('teste')</code> é escrito em linguagem JavaScript.</p>
<pre>
<code>
num = int(input('Digite um número'))
if num % 2 == 0:
print(f'O número {num} é PAR')
else:
print(f'O número {num} é ÍMPAR')
print('Fim do programa')
var num = int(input('Digite um número'));
if (num % 2 == 0){
document.write("f'O número {num} é PAR'");
}
else{
document.write("f'O número {num} é ÍMPAR'");
}
document.write('Fim do programa');
Comment on lines +22 to +29

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
var num = int(input('Digite um número'));
if (num % 2 == 0){
document.write("f'O número {num} é PAR'");
}
else{
document.write("f'O número {num} é ÍMPAR'");
}
document.write('Fim do programa');
var num = int(input('Digite um número'));
if (num % 2 == 0) {
document.write("f'O número {num} é PAR'");
}
else {
document.write("f'O número {num} é ÍMPAR'");
}
document.write('Fim do programa');

</code>
</pre>
<h2>Citações simples</h2>
Expand All @@ -31,4 +41,4 @@ <h2>Abreviações</h2>
<h2>Texto invertido</h2>
<p><bdo dir="rtl">Estou aprendendo a criar coisas em HTML.</bdo></p>
</body>
</html>
</html>