all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
def f(x):
|
||||
return abs(x) ** 0.5 + 5 * x**3
|
||||
|
||||
def ask():
|
||||
return [float(y)
|
||||
for y in input('\n11 numbers: ').strip().split()[:11]]
|
||||
|
||||
if __name__ == '__main__':
|
||||
s = ask()
|
||||
s.reverse()
|
||||
for x in s:
|
||||
result = f(x)
|
||||
if result > 400:
|
||||
print(' %s:%s' % (x, "TOO LARGE!"), end='')
|
||||
else:
|
||||
print(' %s:%s' % (x, result), end='')
|
||||
print('')
|
||||
Loading…
Add table
Add a link
Reference in a new issue