Announcement

Collapse
No announcement yet.

Count to 10,000

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    Rip. /10chara

    Comment


    • #17
      That or he used a script or simple program, then copied the results here. Not really all that difficult. xD

      Code:
      #include <iostream>
      #include <fstream>
      
      int main() {
          std::ofstream out;
      
          out.open("ruin the counting thread.txt");
      
          for (unsigned i = 1; i < 10001; ++i) {
            out << i << std::endl;
          }
      
          out.close();
      }
      And voila: ruin the counting thread.txt caption

      Comment


      • #18
        Originally posted by Omega Metroid View Post
        That or he used a script or simple program, then copied the results here. Not really all that difficult. xD

        Code:
        #include <iostream>
        #include <fstream>
        
        int main() {
        std::ofstream out;
        
        out.open("ruin the counting thread.txt");
        
        for (unsigned i = 1; i < 10001; ++i) {
        out << i << std::endl;
        }
        
        out.close();
        }
        And voila: [ATTACH]n5518[/ATTACH] caption
        I just googled "count to 10000" and then "character counter"

        Comment


        • #19
          Originally posted by Impact View Post

          I just googled "count to 10000" and then "character counter"
          ...Oh. That works, too. xD caption

          Comment


          • #20
            I mean I guess.

            Comment


            • #21
              Nice postcount.

              Comment

              Working...
              X