$i = 2; $j = (1-1/2000)**$i; print $j; #### 0.99900025 #### $i = 2; print 0.9995**$i; #### 0.99900025 #### # function mode print (your code here); #### # list mode print arg1, arg2, etc; # and/or the . operator
## 0.99900025 ##
## $i = 2; print 0.9995**$i; ##
## # function mode print (your code here); ##
## # list mode print arg1, arg2, etc; # and/or the . operator