C and C++

Moderators: None (Apply to moderate this forum)
Number of threads: 28691
Number of posts: 94711

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
strange table Posted by attis on 9 Apr 2007 at 8:57 PM
Hello experts,

I would like some help to print the following table

1
1 2
1 2 3
.....
.
.
.............10

Any ideas appreciated

attis
Report
Re: strange table Posted by MT2002 on 10 Apr 2007 at 3:47 PM
: Hello experts,
:
: I would like some help to print the following table
:
: 1
: 1 2
: 1 2 3
: .....
: .
: .
: .............10
:
: Any ideas appreciated
:
: attis
:

This might work (Not tested nor compilied):
for (int y=0; y<10;y++) {

   static unsigned int i=1;
   for (int x=1; x<=i; x++)
      std::cout << x;

   std::cout << std::endl;
   i++;
}

[/code]



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.