Legge's gone?!
\o/ \o/ \o/ \o/ \o/
HUZZAH!!!
\o/ \o/ \o/ \o/ \o/
HUZZAH!!!

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: SierraFreak on Sat 26/06/2004 20:40:12
I'll do my very best not to make you post like a bastard.If I get out of line, I fully expect to people let me know that I'm being a stupid newbie.
int dayno = 1;
int monthno = 1;
int yearno = 2004;
function adddate() {
if ((monthno == 4) || (monthno == 6) || (monthno == 9) || (monthno == 11)) {
if (dayno < 30) {
dayno += 1;
} else {
monthno += 1;
dayno = 1;
}
} else if ((monthno == 1) || (monthno == 3) || (monthno == 5) || (monthno == 7) || (monthno == 8) || (monthno == 10) || (monthno == 12)) {
if (dayno < 31) {
dayno += 1;
} else {
monthno += 1;
dayno = 1;
}
} else if ((monthno == 2)) {
if (dayno < 28) {
dayno += 1;
} else {
monthno += 1;
dayno = 1;
}
}
if ((monthno < 12)) {
monthno += 1;
} else {
yearno += 1;
monthno = 1;
}
}
Quote from: Sutebi on Thu 24/06/2004 12:46:37
That South Park was funny. In it, they watch the E.T. new edition where they change the guns to walkie-talkies and stuff, which is okay.
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.041 seconds with 17 queries.