“Python wartości bezwzględnej” Kod odpowiedzi

JS Wartość bezwzględna

Math.abs(-4)//returns 4
Math.abs(4)//returns 4
If-dev

Python wartości bezwzględnej


def max_absolute_value(int1,int2):
    return max(abs(int1), abs(int2))

Jealous Jellyfish

Python wartości bezwzględnej

#find the absolute or modulous of the  number
a=int(input('enter number'))
if a>0:
    print('The absolute value of',a,'is',a)
else:
    print('The absolute value of',a,'is',-a)
#output:
#case I
enter number4
The absolute value of 4 is 4
#case II
enter number-4
The absolute value of -4 is 4
Gr@Y_orphan_ViLL@in##

Odpowiedzi podobne do “Python wartości bezwzględnej”

Pytania podobne do “Python wartości bezwzględnej”

Więcej pokrewnych odpowiedzi na “Python wartości bezwzględnej” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu