| View previous topic :: View next topic |
| Author |
Message |
Blank I post too much
Reputation: 1
Joined: 20 Jun 2006 Posts: 3044
|
Posted: Tue Nov 13, 2007 9:06 pm Post subject: |
|
|
| Agent007 wrote: | How much mud could a Mudkip kip if a Mudkip could kip mud
^^
lulz encyclopediadramatica  |
I see someone has been researching the material.
_________________
|
|
| Back to top |
|
 |
Zyphyr Grandmaster Cheater
Reputation: 0
Joined: 04 May 2007 Posts: 731 Location: Boston
|
|
| Back to top |
|
 |
Blank I post too much
Reputation: 1
Joined: 20 Jun 2006 Posts: 3044
|
Posted: Tue Nov 13, 2007 9:10 pm Post subject: |
|
|
| Agent007 wrote: | | Blank wrote: | | Agent007 wrote: | How much mud could a Mudkip kip if a Mudkip could kip mud
^^
lulz encyclopediadramatica  |
I see someone has been researching the material. |
hahaa i was bored and i went to.. um.... do a barel roll and clicked on some links and i ended up on the "i haerd you liek mudkipz" page...
hahahah |
That page started me on ED.
Lol.
Page was gay.
_________________
|
|
| Back to top |
|
 |
Zyphyr Grandmaster Cheater
Reputation: 0
Joined: 04 May 2007 Posts: 731 Location: Boston
|
|
| Back to top |
|
 |
Blank I post too much
Reputation: 1
Joined: 20 Jun 2006 Posts: 3044
|
Posted: Tue Nov 13, 2007 9:11 pm Post subject: |
|
|
| Agent007 wrote: | | Blank wrote: | | Agent007 wrote: | | Blank wrote: | | Agent007 wrote: | How much mud could a Mudkip kip if a Mudkip could kip mud
^^
lulz encyclopediadramatica  |
I see someone has been researching the material. |
hahaa i was bored and i went to.. um.... do a barel roll and clicked on some links and i ended up on the "i haerd you liek mudkipz" page...
hahahah |
That page started me on ED.
Lol.
Page was gay. |
ere-disfunction? wtf? |
OLAWD.
gg.
_________________
|
|
| Back to top |
|
 |
Zyphyr Grandmaster Cheater
Reputation: 0
Joined: 04 May 2007 Posts: 731 Location: Boston
|
|
| Back to top |
|
 |
OMG NOT A LEECHER Grandmaster Cheater
Reputation: 0
Joined: 04 Feb 2007 Posts: 919
|
Posted: Tue Nov 13, 2007 9:13 pm Post subject: |
|
|
| nor are you a virgin(;
|
|
| Back to top |
|
 |
Zyphyr Grandmaster Cheater
Reputation: 0
Joined: 04 May 2007 Posts: 731 Location: Boston
|
Posted: Tue Nov 13, 2007 9:16 pm Post subject: |
|
|
im bored
_________________
Atheist for life. |
|
| Back to top |
|
 |
Zyphyr Grandmaster Cheater
Reputation: 0
Joined: 04 May 2007 Posts: 731 Location: Boston
|
Posted: Tue Nov 13, 2007 9:20 pm Post subject: |
|
|
o rly?
_________________
Atheist for life. |
|
| Back to top |
|
 |
seeplusplus Grandmaster Cheater
Reputation: 0
Joined: 28 Oct 2007 Posts: 562 Location: cracking accounts
|
Posted: Tue Nov 13, 2007 9:23 pm Post subject: |
|
|
| Code: | #include <iostream>
using namespace std;
int x,y,answer;
float xf,yf,sq;
int add(int x, int y), sub(int x, int y), mult(int x, int y);
float divide(float xf, float yf),square(float sq,float squ),cube(float cu,float cub);
void options(),title();
int main (){
title();
options();
cin>>answer;
while(answer!=7){
switch(answer){
case 1:
cout<<"\nPlease enter the number to add to: ";
cin>>x;
cout<<"\nPlease enter the number to add on: ";
cin>>y;
cout<<"\nThe answer is "<<add(x,y)<<"\n\n";
options();
break;
case 2:
cout<<"\nPlease enter the number to subtract from: ";
cin>>x;
cout<<"\nPlease enter the number to subtract: ";
cin>>y;
cout<<"\nThe answer is "<<sub(x,y)<<"\n\n";
options();
break;
case 3:
cout<<"\nPlease enter the number to multiply: ";
cin>>x;
cout<<"\nPlease enter the number to multiply by: ";
cin>>y;
cout<<"\nThe answer is "<<mult(x,y)<<"\n\n";
options();
case 4:
cout<<"\nPlease enter the number to divide: ";
cin>>xf;
cout<<"\nPlease enter the number to divide by: ";
cin>>yf;
cout<<"\nThe answer is "<<divide(xf,yf)<<"\n\n";
options();
break;
case 5:
cout<<"\nPlease enter the number to square: ";
cin>>xf;
cout<<"\nPlease enter the number of times to square: ";
cin>>yf;
cout<<"\nThe answer is "<<square(xf,yf)<<"\n\n";
options();
break;
case 6:
cout<<"\nPlease enter the number to cube: ";
cin>>xf;
cout<<"\nPlease enter the number of times to cube: ";
cin>>yf;
cout<<"\nThe answer is "<<cube(xf,yf)<<"\n\n";
options();
break;
}
if(answer>6&&answer!=7){
cout<<"\nPlease enter 1,2,3,4,or 5.";
options();
}
cin>>answer;
}
return 0;
}
int add(int x, int y){
return x+y;
}
int sub(int x, int y){
return x-y;
}
int mult(int x, int y){
return x*y;
}
float divide(float xf, float yf){
return xf/yf;
}
float square(float sq,float squ){
float sqans,tempsq=0;
int k=0;
while(k<squ){sqans=tempsq+(sq*sq);tempsq=sqans+tempsq;k++;}
return sqans;
}
float cube(float cu,float cub){
float cuans,tempcu=0;
int m=0;
while(m<cub){cuans=tempcu+(cu*cu*cu);tempcu=cuans+tempcu;m++;}
return cuans;
}
void options(){
cout<<"\nPlease pick an option"<<endl;
cout<<"\n1=add, 2=sub, 3=mult, 4=div, 5=square,6=cube,7=end"<<endl;
}
void title(){
cout<<"==================================================="<<endl;
cout<<"==================================================="<<endl;
cout<<"CALCULATOR PROGRAM By: seeplusplus";
cout<<"\n==================================================="<<endl;
cout<<"==================================================="<<endl;
}
|
lol... thats what was on mine xD
_________________
I am xwallflowerx...this will probably be deleted soon... |
|
| Back to top |
|
 |
Zyphyr Grandmaster Cheater
Reputation: 0
Joined: 04 May 2007 Posts: 731 Location: Boston
|
Posted: Tue Nov 13, 2007 9:25 pm Post subject: |
|
|
u made a calc?
_________________
Atheist for life. |
|
| Back to top |
|
 |
seeplusplus Grandmaster Cheater
Reputation: 0
Joined: 28 Oct 2007 Posts: 562 Location: cracking accounts
|
Posted: Tue Nov 13, 2007 9:27 pm Post subject: |
|
|
Still in the process trying to make a GUI currently.
_________________
I am xwallflowerx...this will probably be deleted soon... |
|
| Back to top |
|
 |
Sandy_glover Advanced Cheater
Reputation: 0
Joined: 16 Aug 2006 Posts: 64
|
Posted: Tue Nov 13, 2007 11:28 pm Post subject: lol |
|
|
this was on mine
"Attention
It's that time again!
As many of you know, each year the Internet must be shut down for 24 hours in order to allow us to clean it.
The cleaning process, which eliminates dead Email and inactive FTP, WWW and Gopher sites, allows for a better-working and faster Internet.
This year, the cleaning process will take place from 12:01 a.m.. GMT on February 28 until 12:01 a.m. GMT on February 29 (the time least likely to interfere with ongoing work).
During that 24-hour period, five powerful Internet search engines situated around the world will search the Internet and delete any data that they find.
In order to protect your valuable data from deletion we ask that you do the following:
Disconnect all terminals and local area networks from their Internet connections.
Shut down all Internet servers, or disconnect them from the Internet.
Disconnect all disks and hardrives from any connections to the Internet.
Refrain from connecting any computer to the Internet in any way.
We understand the inconvenience that this may cause some Internet users, and we apologize. However, we are certain that any inconveniences will be more than made up for by the increased speed and efficiency of the Internet, once it has been cleared of electronic flotsam and jetsam.
We thank you for your cooperation.
Kim Dereksen
Interconnected Network Maintenance staff,
Main branch,
Massachusetts Institute of Technology
Sysops and others:
Since the last Internet cleaning, the number of Internet users has grown dramatically.
Please assist us in alerting the public of the upcoming Internet cleaning by posting this message where your users will be able to read it. Please pass this message on to other sysops and Internet users as well.
Thank you.
"
|
|
| Back to top |
|
 |
argarg Cheater
Reputation: 0
Joined: 19 Jul 2005 Posts: 45
|
Posted: Tue Nov 13, 2007 11:30 pm Post subject: |
|
|
import javax.swing.JOptionPane;
_________________
| slovach wrote: | | You haven't lived until you stuff your own dick into your ass. |
|
|
| Back to top |
|
 |
aiyoku Expert Cheater
Reputation: 0
Joined: 11 Nov 2007 Posts: 121
|
Posted: Tue Nov 13, 2007 11:54 pm Post subject: |
|
|
| Code: | Hey boo how are you?
Oh my god, i miss you so much
How'd you been?
We should hang out sometime
Myspace me fer sure
What the fuck
You can totally see his fucking tracks
Oh my god
I know what the fuck
I mean he draw his eyebrows on with a fucking sharpie
I know fucking asses is it that
This is chris fucking donathan
Don't get mad Jefferee star
Cause I made you snort alot of my cum
While i fuck you in the ass
Fer sure maybe fer sure not
Fer sure eh fer sure bomb
Pulled up at a stop light did drugs on the dashboard
Look at the mess we made tonight
Kick off your stilettos
Kick off your stilettos
And fuck me in the backseat
Fuck me in the backseat
You're always falling in disguise
And always quick to compromise
Kick off your stilettos [oh yeah]
Kick off your stilettos
And fuck me in the backseat [fa-fa-fa]
Fuck me in the backseat
Fer sure maybe fer sure not
Fer sure eh fer sure bomb
This is the end of what we planned [of what we planned]
And now.
We're not falling in love
We're just falling apart [so girl let's dance the night away]
This is how the beat drops
This is how the beat drops [Just let your body go]
This is how the beat drops
This is how the beat drops [I wanna see your panties drop girl now]
All this time is wasted pretending we're in love
But that's alright cause you know
I love being with you and seeing you cry
So don't let go-o-o
Well don't let go, no-o
Don't let go
Fer sure maybe fer sure not
Fer sure eh fer sure bomb
Pulled up at a stop light did drugs on the dashboard
Look at the mess we made tonight
Kick off your stilettos
Kick off your stilettos
And fuck me in the backseat
Fuck me in the backseat
You're always falling in disguise
And always quick to compromise
Kick off your stilettos [oh yeah]
Kick off your stilettos
And fuck me in the backseat [fa-fa-fa]
Fuck me in the backseat
Fer sure maybe fer sure not
Fer sure eh fer sure bomb
This is the end of what we planned [of what we planned]
And now.
We're not falling in love
We're just falling apart [so girl let's dance the night away]
This is how the beat drops
This is how the beat drops [Just let your body go]
This is how the beat drops
This is how the beat drops [I wanna see your panties drop girl now]
All this time is wasted pretending we're in love
But that's alright cause you know
I love being with you and seeing you cry
So don't let go-o-o
Well don't let go, no-o
Don't let go
No jkjkjk lololol
I heart your fucking makeup
Oh my god I love your hair
Is that a new tattoo?
Did that piercing fucking hurt?
No jkjkjk lololol
We're not falling in love
We're just falling apart [so girl let's dance the night away]
This is how the beat drops
This is how the beat drops [Just let your body go]
This is how the beat drops
This is how the beat drops [I wanna see your panties drop girl now]
All this time is wasted pretending we're in love
But that's alright cause you know
I love being with you and seeing you cry
So don't let go-o-o [All this time is wasted]
Well don't let go, no-o [Pretending we're in love]
But that's alright cause you know
I love being with you and seeing you cry
But that's alright
You got fucking jizz on my back
Where'd you threw my panties?
I threw them out the window bitch
Shut the fuck up. |
Mine, minus the
|
|
| Back to top |
|
 |
|