hi im c0n. aka c0nthem0n.
if you dont like me then i LOL @ u
while(c0n > y0u)
LOL();
LOL
i will fork() bomb you lolololol
I tried that, but your loop never runs....
Don't you have to specify c0n and y0u and LOL?
Lmao, I think it was suppose to be a little joke. :)
Sheesh, people taking things to literally!! :D
I will spoon() bomb you lolol.
Quote from: Newby on August 30, 2005, 11:36:14 PM
I will spoon() bomb you lolol.
hahaha.
Quote from: deadly7 on August 30, 2005, 09:31:48 PM
Don't you have to specify c0n and y0u and LOL?
it's all implied.
Quote from: iago on August 30, 2005, 03:01:49 PM
I tried that, but your loop never runs....
just specify c0n as God, and God as the highest number possible, and y0u as the lowest. then it should run fine. then setup the function LOL(); to just printf("LOL\n"); a bunch. then there you go. loop wurkz perfektly
*snaps fingers*
#include <stdio.h>
int c0n = 1;
int y0u = 0;
int LOL()
{
printf("LOL!\n");
return 0;
}
int main()
{
while(c0n > y0u)
{
LOL();
}
return 0;
}
Untested but should work code.
void LOL() is better. That way you're not returning an integer to nothing!
I wasn't sure if C supported that... *shrug*
Quote from: Blaze on August 31, 2005, 12:12:07 AM
*snaps fingers*
#include <stdio.h>
int c0n = 1;
int y0u = 0;
int LOL()
{
prinft("LOL!\n");
return 0;
}
int main()
{
while(c0n > y0u)
{
LOL();
}
return 0;
}
Untested but should work code.
Hmm, you don't need to put bracers if there's only one instruction.
let me fix this up the eleet way.
#include <stdio.h>
int c0n = 31337;
int y0u = 0;
int LOL()
{
printf("LOL! c0n 0wnz yu0\n");
return 0;
}
int main()
{
while(c0n > y0u)
LOL();
return (c0n == 31337); // WILL ALWAYS RETURN TRUE LOL
}
there. the code is now elite.
Its my way of doing things, and it helps me keep trac off what code goes in what loop/if/else/ect.
btw, I mistyped 'printf'
unban me from clan zer0 fag :o
Quote from: Blaze on August 31, 2005, 02:05:51 AM
Its my way of doing things, and it helps me keep trac off what code goes in what loop/if/else/ect.
btw, I mistyped 'printf'
haha, you're right. i didnt notice that. it has been el fix-o'd
I put braces around 1 line code blocks as well, it keeps things imho more organized. :\
Quote from: OG Trust on August 31, 2005, 06:15:52 PM
I put braces around 1 line code blocks as well, it keeps things imho more organized. :\
except it makes ur code look more newbish
too many bracers and your code starts looking really gay like:
if(blah)
{
blah;
}
else
{
blah;
}
in my HUMBLE opini0n, this looks c00ler:
if(blah)
blah;
else
blah;
it makes it more compact and is more ejeet
WTF JAVA PORT LOLOL
public class Main {
int joe = 31337;
int c0n = 0;
public static void main(string args[]) {
while(joe > c0n) {
LOL();
}
}
public static void LOL() {
System.out.println("LOL! joe 0wnz y0u")l
}
}