whiplk

[CODE] - Juros Simples

Jan 22nd, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function juros_simples(c, i, t)
  2. {
  3.     return (j = (c*i*t)/100);  
  4. }
  5.  
  6. function montante(c, j)
  7. {
  8.     return (m = (c+j));
  9. }
Advertisement
Add Comment
Please, Sign In to add comment