+ 1
Antilog calculation
How to make an antilog calculator in Python or Java
1 Odpowiedź
+ 5
hi Rishabh, that is very simple.
computing of antilog: y = 10 ** x
where x = number that should be calculated
where y = result of calculation = antilog
code:
# calculate antilog
num = float(input('Enter number to calculate:'))
print('Result is: ', 10 ** num)