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
Adicionei S02_Calculadora.md com a Tarefa Calculadora na pasta PaulaA… #21
Open
Paula4444
wants to merge
1
commit into
reprograma:main
Choose a base branch
from
Paula4444: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
Changes from all commits
Commits
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,91 @@ | ||
## Exercício para casa: Calculadora | ||
|
||
#separador para organização | ||
espaco = "________________________" | ||
|
||
# Somar(x, y): recebe dois números e retorna a soma. | ||
|
||
print(espaco) | ||
|
||
#Calculadora Soma | ||
print("Esta é a nossa calculadora de soma") | ||
numero1 = int(input("Digite o número 1:")) | ||
numero2 = int(input("Digite o número 2:")) | ||
soma = ((numero1) + (numero2)) | ||
print("O valor total da sua soma é:", soma) | ||
if soma %2==0: | ||
print("A sua soma é um número par.") | ||
else: | ||
print("A sua soma é um número ímpar.") | ||
|
||
print(espaco) | ||
|
||
#subtrair(x, y): recebe dois números e retorna a subtração. | ||
|
||
#Calculadora Subtração | ||
print("Esta é a nossa calculadora de subtração") | ||
numero3 = int(input("Digite o número 1:")) | ||
numero4 = int(input("Digite o número 2:")) | ||
soma2 = ((numero3) - (numero4)) | ||
print("O valor total da sua subtração é:", soma2) | ||
if soma2 %2==0: | ||
print("A sua subtração é um número par.") | ||
else: | ||
print("A sua subtração é um número ímpar.") | ||
|
||
print(espaco) | ||
|
||
#multiplicar(x, y): recebe dois números e retorna a multiplicação. | ||
|
||
#Calculadora multiplicação | ||
print("Esta é a nossa calculadora de multiplicação") | ||
numero5 = int(input("Digite o número 1:")) | ||
numero6 = int(input("Digite o número 2:")) | ||
soma3 = ((numero5) * (numero6)) | ||
print("O valor total da sua multiplicação é:", soma3) | ||
if soma3 %2==0: | ||
print("A sua multiplicação é um número par.") | ||
else: | ||
print("A sua multiplicação é um número ímpar.") | ||
|
||
print(espaco) | ||
|
||
#dividir(x, y): recebe dois números e retorna a divisão do primeiro pelo segundo | ||
|
||
#Calculadora divisão | ||
print("Esta é a nossa calculadora de divisão") | ||
numero7 = int(input("Digite o número 1:")) | ||
numero8 = int(input("Digite o número 2:")) | ||
soma4 = ((numero7) / (numero8)) | ||
print("O valor total da sua divisão é:", soma4) | ||
if soma4 %2==0: | ||
print("A sua divisão é um número par.") | ||
else: | ||
print("A sua divisão é um número ímpar.") | ||
|
||
print(espaco) | ||
|
||
#potenciação(x, y) | ||
|
||
#Calculadora potenciação | ||
print("Esta é a nossa calculadora de potenciação") | ||
numero9 = int(input("Digite o número 1:")) | ||
numero10 = int(input("Digite o número 2:")) | ||
soma5 = ((numero9) ** (numero10)) | ||
print("O valor total da sua potenciação é:", soma5) | ||
if soma5 %2==0: | ||
print("A sua potenciação é um número par.") | ||
else: | ||
print("A sua potenciação é um número ímpar.") | ||
|
||
print(espaco) | ||
|
||
#trazer se o número resultante de cada operação é ímpar | ||
|
||
#Descobrindo se o número é par ou ímpar | ||
print("Descubra se seu número é par ou ímpar") | ||
numero11 = int(input("Digite um número")) | ||
impar = numero11%2 | ||
impar = bool(impar) | ||
print("O número ", numero11, "é ímpar?", impar) | ||
|
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.
lembre-se que se preciso, vc conseguiria colocar um
\n
no print, para quebrar linha tbm :D