-1 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
30% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
2 Posted Topics
Re: [CODE] #include <iostream> using namespace std; int main(){ double money=1000; int years=0; while(money<2000) { money=money+4*money/100; years++; } cout<<"after "<<years<<endl; return 0; [/CODE] | |
The End.