generated from reprograma/onX-sx-temaX
-
Notifications
You must be signed in to change notification settings - Fork 42
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
atividade S02 #32
Open
jacomesoraia
wants to merge
5
commits into
reprograma:main
Choose a base branch
from
jacomesoraia:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
atividade S02 #32
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
f882163
adicionei minha atividade em atividadeS02Soraia
jacomesoraia b6a3a72
mudei o arquivo da minha atividade de pasta
jacomesoraia 20b8bb3
adicionei minha atividade
jacomesoraia 9a8fe55
adicionando readme
jacomesoraia 99f1ac7
Readme editado
jacomesoraia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
input("Vamos fazer algumas operaçãoes matemáticas? Click Enter pra começar! ") | ||
|
||
'''soma''' | ||
|
||
numero1 = int(input(" Digite um número da sua escolha! ")) | ||
numero2 = int(input(" Digite outro número da sua escolha! ")) | ||
|
||
soma = numero1 + numero2 | ||
print(" A soma de ", numero1, "e ", numero2, "é igual a ", soma) | ||
|
||
eh_impar = soma%2 | ||
print("O resultado ", soma, "é ímpar?", bool(eh_impar)) | ||
|
||
input("Muito bem, vamos continuar? Click Enter pra continuar! ") | ||
|
||
'''subtração''' | ||
|
||
numero1 = int(input(" Digite um número da sua escolha! ")) | ||
numero2 = int(input(" Digite outro número da sua escolha! ")) | ||
|
||
subtracao = numero1 - numero2 | ||
print(" A subtração de ", numero1, "e ", numero2, "é igual a ", subtracao) | ||
|
||
eh_impar = subtracao%2 | ||
print("O resultado ", subtracao, "é ímpar?", bool(eh_impar)) | ||
|
||
input("Ainda podemos fazer muitas operações, Deseja continuar? Click Enter pra continuar! ") | ||
|
||
'''multiplicação''' | ||
|
||
|
||
numero1 = int(input(" Digite um número da sua escolha! ")) | ||
numero2 = int(input(" Digite outro número da sua escolha! ")) | ||
|
||
multiplicacao = numero1 * numero2 | ||
print(" A multiplicação de ", numero1, "e ", numero2, "é igual a ", multiplicacao) | ||
|
||
eh_impar = multiplicacao%2 | ||
print("O resultado ", multiplicacao, "é ímpar?", bool(eh_impar)) | ||
|
||
input("As operações estão ficando mais difíceis, Deseja continuar? Click Enter pra continuar! ") | ||
|
||
'''Divisão''' | ||
|
||
|
||
numero1 = float(input(" Digite um número da sua escolha! ")) | ||
numero2 = float(input(" Digite outro número da sua escolha! ")) | ||
|
||
divisao = numero1 / numero2 | ||
print(" A divisão de ", numero1, "e ", numero2, "é igual a ", divisao) | ||
|
||
eh_impar = divisao%2 | ||
print("O resultado ", divisao, "é ímpar?", bool(eh_impar)) | ||
|
||
input("Vamos agora ver a potenciação dos números? Deseja continuar? Click Enter pra continuar! ") | ||
|
||
'''Potenciação''' | ||
|
||
numero1 = int(input(" Digite um número da sua escolha! ")) | ||
numero2 = int(input(" Digite outro número da sua escolha! ")) | ||
|
||
potencia = numero1 ** numero2 | ||
print(" A potenciação de ", numero1, "elevado a ", numero2, "é igual a ", potencia) | ||
|
||
eh_impar = potencia%2 | ||
print("O resultado ", potencia, "é ímpar?", bool(eh_impar)) | ||
|
||
print("Agora chegamos ao fim das nossas operações! Se quiser continuar sua calculadora comece o processo novamente! ") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
nome = input("Digite seu nome: ") | ||
idade = input("Digite sua idade: ") | ||
print(nome, idade) | ||
|
||
print("Olá,", input("Qual seu nome: ")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
numero1 = 1 | ||
print(numero1) | ||
print("o tipo de variável numero1 é:", type(numero1)) | ||
|
||
numero2 = 7.4 | ||
print(numero2) | ||
print("o tipo de variável numero2 é:", type(numero2)) | ||
|
||
numero3 = 400 | ||
print(numero3) | ||
print("o tipo de variável numero3 é:", type(numero3)) | ||
|
||
numero3 = numero1+numero2 | ||
print(numero3) | ||
print("o tipo de variável soma é:", type(numero3)) | ||
|
||
#boleano | ||
|
||
trouxe_carteira = False | ||
print ("o tipo de variável trouxe_carteira é:", type(trouxe_carteira)) | ||
|
||
#string | ||
texto = "valor texto" | ||
print(texto) | ||
print ("o tipo de variável texto:", type(texto)) | ||
|
||
texto = '"Ser ou não ser, eis a questão", Will' | ||
print(texto) | ||
entrada = input("Digite um texto: ") | ||
print("O Valor do Input é:", entrada)# |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
marido_salario = 4500 | ||
|
||
esposa_salario = 6500 | ||
|
||
filho_salario = 850 | ||
|
||
renda_mensal = marido_salario + esposa_salario + filho_salario | ||
|
||
renda_media = (marido_salario + esposa_salario + filho_salario) / 3 | ||
|
||
print(renda_mensal) | ||
print(renda_media) | ||
|
||
nome = "Soraia" | ||
sobrenome = "Jácome" | ||
print(nome+ " " +sobrenome ) | ||
conteudo = "Meu ano de nascimento é " + str(1989) | ||
print(conteudo) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gostei dessa continuidade, ficou legal :D