EvilPuncker Posted July 11, 2012 Posted July 11, 2012 Tell us the last thing you copied! following forum rules ofc. mine: ^000000 Quote
Sharpienero Posted July 11, 2012 Posted July 11, 2012 (edited) http://puu.sh/Hwyp Edited July 11, 2012 by Sharpienero Quote
Sharpienero Posted July 11, 2012 Posted July 11, 2012 http://pokecyrus.net/ Is this a fun game? o-o; Blackmill – Fortune Soul Quote
Emistry Posted July 11, 2012 Posted July 11, 2012 http://rathena.org/board/index.php?app=core&module=search&do=viewNewContent&search_app=forums Quote
crowmaster Posted July 12, 2012 Posted July 12, 2012 u never see a postman celebrating after he just delivered a letter Quote
Pauline Posted July 21, 2012 Posted July 21, 2012 www.syok.org/new/content.php?448-Budz-House-(2011)-DVDRip-MKV Quote
Brian Posted August 2, 2012 Posted August 2, 2012 http://www.projecthoneypot.org/ip_59.99.193.12 Quote
EvilPuncker Posted August 3, 2012 Author Posted August 3, 2012 memset(md->lootitem, 0, sizeof(*md->lootitem)); Quote
EvilPuncker Posted August 4, 2012 Author Posted August 4, 2012 ./configure --with-mysql=/mysql32/bin/mysql_config Quote
Jupeto Posted August 8, 2012 Posted August 8, 2012 $item->equip_jobs_dropdown = build_equip_job_dropdown( array( 'id' => 'item-equip_jobs', 'class' => 'combobox dk poshy-tooltip-left', 'bitmask' => $item->equip_jobs, 'multiple' => 'multiple', 'size' => '5', 'others' => ' title="Which jobs this item is available for. Values below can be combined to achieve availability for multiple job classes.<span>Tip:</span> Hold CTRL on your keyboard while selecting/deselecting an option." style="height:80px;"', ) ); Quote
Eurydice Posted August 8, 2012 Posted August 8, 2012 http://www.youtube.com/watch?v=qmRA7jDVN8M Quote
GM Takumirai Posted August 8, 2012 Posted August 8, 2012 (edited) www.r_dt_be.com WTF!!! - ouch need to edit it .. its againts the rules.. Edited August 8, 2012 by GM Takumirai Quote
Ehcloprom Posted August 9, 2012 Posted August 9, 2012 Couldn't figure out how to rename files on codeblocks so I made a new cpp file and copied and pasted my noob ass calculator ive bee making. #include <iostream> #include <string> #include <limits> using namespace std; int main(){ /*Setting up the 3 main variables*/ int calc, num1, num2; /*In forming the user to input the first number.*/ cout << endl << "\nPlease enter the first number: "; /*Setting the variable 'num1' to the number the user input. and checking to make sure the user input is a whole number.*/ while (!(cin >> num1)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(),'\n'); cout << endl << "Please input a proper 'whole' number!: " << "\n\nPlease enter the first number: ";} cout << endl << "\nPlease enter the second number: "; /*Setting the variable 'num2' to the number the user input. and checking to make sure the user input is a whole number.*/ while (!(cin >> num2)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(),'\n'); cout << endl << "Please input a proper 'whole' number!: " << "\n\nPlease enter the second number: ";} /*A little 'menu' like output informing users of what number for each operation.*/ cout << "\n1: Add\n2: Subtract\n3: Multiply\n4: Divide\n\n" << "Option: "; /*Setting the variable 'calc' to the number the user input,so the calculator knows what operation to use. and checking to make sure the user input is a whole number.*/ while (!(cin >> calc)){ cin.clear(); cin.ignore(numeric_limits<streamsize>::max(),'\n'); cout << endl << "Please input 1-4: " << "\n\nOption: ";} /*Checking what operation was chosen and doing the math.*/ if(calc == 1){ cout << endl << num1 << "+" << num2 << "= " << num1 + num2;} if(calc == 2){ cout << endl << num1 << "-" << num2 << "= " << num1 - num2;} if(calc == 3){ cout << endl << num1 << "x" << num2 << "= " << num1 * num2;} if(calc == 4){ cout << endl << num1 << "/" << num2 << "= " << num1 / num2;} return(0); } Just started learning C++ about 7-8 hours ago. Quote
v00m3r Posted August 9, 2012 Posted August 9, 2012 (edited) me is this one: actually mine is printscreen.. just now.. ^^ Edited August 9, 2012 by v00m3r Quote
Winz Posted October 17, 2012 Posted October 17, 2012 solved? add a [solved] in front of your thread's title and put a "solved" inside the tag box. honestly, it's the last of my clipboard. keep continue~ Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.