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
~192 People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for pop007

Hello all, I have done with this code Output : Enter n = 5 2+4+6+8+10 = 30 I compile with Turbo C++, version 3 here is my code [code] #include <iostream.h> #include <conio.h> void main() { clrscr(); int n, sum=0; cout<<"Enter n= "; cin>>n; for (int i=1; i<=n; i++) { …

Member Avatar for WaltP
0
96
Member Avatar for pop007

Hello all, I got problem to write program concerning in money deposit into bank. i.e : money = 100$, month = 3, interest = 3%/month here we got : 1- Enter money into bank = 100 2- Enter month = 3 3- Total amount = 109.27 4- Total interest = …

Member Avatar for Bench
0
96