Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
Ranked #4K
~4K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for macca1111

Simpler program: you should type line by line so the indents come into it [CODE]#A program to determine how long it takes for an investment to double def main(): I=input("What is the annualized interest rate as a decimal?: ") i=0 z=1 while z<2: i=i+1 z=(z*(1+I)) if z>=2: print i main()[/CODE]

Member Avatar for NoddyNUIG
0
4K

The End.