-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d726ec
commit 6ead1f4
Showing
1 changed file
with
10 additions
and
28 deletions.
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 |
---|---|---|
@@ -1,34 +1,16 @@ | ||
#Faça um programa que recebe três números do usuário, e identifica o maior através de uma função e o menor número | ||
#através de outra função.Achar maior e menor número com funções | ||
# Faça um programa que recebe três números do usuário, e identifica o maior | ||
# através de uma função e o menor número através de outra função.Achar maior | ||
# e menor número com funções | ||
|
||
|
||
def maior(n1, n2, n3): | ||
if n1 > n2 and n1 > n3: | ||
m = n1 | ||
elif n2 > n3: | ||
m = n2 | ||
else: | ||
m = n3 | ||
def higher(n1: int | float, n2: int | float, n3: int | float) -> int | float: | ||
return max(n1, n2, n3) | ||
|
||
return(m) | ||
|
||
def menor(a, b, c): | ||
if a < b and a < c: | ||
me = a | ||
elif b < c: | ||
me = b | ||
else: | ||
me = c | ||
return(me) | ||
def lower(n1: int | float, n2: int | float, n3: int | float) -> int | float: | ||
return min(n1, n2, n3) | ||
|
||
print("digite tres numeros: ") | ||
|
||
num1 = int(input()) | ||
num2 = int(input()) | ||
num3 = int(input()) | ||
|
||
maiorn = maior(num1, num2,num3) | ||
menorn = menor(num1, num2, num3) | ||
|
||
print(f"o maior é: {maiorn}") | ||
print(f"o menor é: {menorn}") | ||
if __name__ == '__main__': | ||
print(higher(1, 2, 3)) | ||
print(lower(1, 2, 3)) |