Lets Count to a Million

Status
Not open for further replies.
Code:
#include <windows.h>
#include <vbulletin.h> // Lets just, for a second pretend that there is such a thing
#include <math.h>

#pragma comment(lib, "vbulletin_api.lib")

#ifndef _UNICODE_
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPCSTR lpCmdLine, int nCmdShow)
{
    HWND hFS;
    while (hFS == NULL)
    {
        FindWindow(NULL, "Lets Count to a Million");
        sleep(3);
    }
    
    VBULLETINPOST *pPost = new VBULLETINPOST;
    for (int i = 1; i <= 1000000; i++)
    {
    char pBuffer[];
    sprintf(pBuffer, "Current number %i", i);
    pPost -> PostNew(pBuffer, sizeof(pBuffer);
    sleep(30000); // For flood protection
    }
    
    delete pPost; // Frees allocated memory
    
    return 0;
}
#endif

ftw.
 
Code:
  1111111       444444444  555555555555555555 
 1::::::1      4::::::::4  5::::::::::::::::5 
1:::::::1     4:::::::::4  5::::::::::::::::5 
111:::::1    4::::44::::4  5:::::555555555555 
   1::::1   4::::4 4::::4  5:::::5            
   1::::1  4::::4  4::::4  5:::::5            
   1::::1 4::::4   4::::4  5:::::5555555555   
   1::::l4::::444444::::4445:::::::::::::::5  
   1::::l4::::::::::::::::4555555555555:::::5 
   1::::l4444444444:::::444            5:::::5
   1::::l          4::::4              5:::::5
   1::::l          4::::4  5555555     5:::::5
111::::::111       4::::4  5::::::55555::::::5
1::::::::::1     44::::::44 55:::::::::::::55 
1::::::::::1     4::::::::4   55:::::::::55   
111111111111     4444444444     555555555
 
2235161257_3fcb5ae720.jpg
 
you people fucked up and #FAILED
159
and
160 in the same post.
NEXT IS 161!
 
You all really suck at this, next person that messes up gets banned for a day.

One Hundred Seventy Hoes
 
177 is the magic constant of a magic square using only Chen primes.
177 is a digitally balanced number: in its binary numeral system representation it has the same number of zeros as ones.
 
Status
Not open for further replies.
Back
Top