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 #55.0K
~399 People Reached
Favorite Forums
Favorite Tags
c++ x 3

1 Posted Topic

Member Avatar for steveincolorado

1. #include<iostream> 2. #include<conio.h> 3. using namespace std; 4. int main() 5. { 6. int a=1; 7. for(int i=1;i<=4;i++) 8. { 9. for(int j=1;j<=i;j++) 10. { 11. cout<<a; 12. a++; 13. } 14. cout<<endl; 15. } 16. getch(); 17. } # Output # 1. 1 2. 2 3 3. 4 …

Member Avatar for maaz0088
0
399

The End.