Last Comment Wins!

Status
Not open for further replies.

WaLLy

Lieutenant General
|K3| Executive
i had 2000+ posts, now i only has 1000
hB27B3D54


I checked our old forum and you have 1,040 posts right there brah.
 

WaLLy

Lieutenant General
|K3| Executive
The old forum just freaked me out for 3 seconds! Since I had the Last Comment thread from the old forum open in a new tab, I had closed our forum's tab and just so happen to see Nov. 20th. I wondered where the hell all the posts went, then I saw the URL XD
 

Kreubs

|K3|Minecraft Admin
|K3| Executive
Code:
bool IsPrime( long long number ) {
    if ( ( (!(number & 1)) && number != 2 ) || (number < 2) || (number % 3 == 0 && number != 3) )
        return (false);

    for( long long k = 1; 36*k*k-12*k < number;++k)
        if ( (number % (6*k+1) == 0) || (number % (6*k-1) == 0) )
            return (false);

    return true;
}
 

Rival

Double Nature
Former Krew Member
Code:
bool IsPrime( long long number ) {
    if ( ( (!(number & 1)) && number != 2 ) || (number < 2) || (number % 3 == 0 && number != 3) )
        return (false);

    for( long long k = 1; 36*k*k-12*k < number;++k)
        if ( (number % (6*k+1) == 0) || (number % (6*k-1) == 0) )
            return (false);

    return true;
}

Confused Orb is confused...

BKK1AsnCEAA15JK.jpg:large
 

Finch

|KKK|'s Epic Chef
|K3| Member
@Recruit @Member @Moderator @Super @admin
Just wannted to let you know that: bump[DOUBLEPOST=1386867230][/DOUBLEPOST]Awwwwwwww y dis no working? :(
 

Kreubs

|K3|Minecraft Admin
|K3| Executive
@[USERGROUP=55]Minecraft Admin[/USERGROUP] @[USERGROUP=3]Executive[/USERGROUP] @[USERGROUP=36]Super-Moderator[/USERGROUP] @[USERGROUP=37]Moderator[/USERGROUP] @[USERGROUP=38]Member[/USERGROUP] @[USERGROUP=43]Member of the Month[/USERGROUP] @[USERGROUP=40]Recruit[/USERGROUP] @[USERGROUP=23]Recruitment Team[/USERGROUP] @[USERGROUP=34]Recruit Admin[/USERGROUP]

like dis? XD
 

The Moment

|K3|Recruit Admin
|K3| Executive
I didn't get notifications.

@[USERGROUP=3]Executive[/USERGROUP] @[USERGROUP=55]Minecraft Admin[/USERGROUP]
 
Status
Not open for further replies.
Top Bottom