Started by tSwitch, May 03, 2009, 09:41:43 pm
Quote from: Biker WcW on May 08, 2009, 04:29:07 pmSpoiler: ShowHide1000Prolly not, but oh well. I don't feel like using my head too much today.
Quote from: Rival Blizzard on May 08, 2009, 04:47:28 pmCan I tell him, please? ;_;
Quote from: Rocket Grunt on May 08, 2009, 05:12:20 pmYou can tell me
Quote from: Lass Sally on May 08, 2009, 05:56:39 pmcan you give me a hint? im not smart like blizzard =[
Quote from: Biker WcW on May 08, 2009, 06:47:19 pmIs being a sadist fun?
Quote from: Biker WcW on May 08, 2009, 06:55:27 pmI retcon my statement, and now you are obligated to tell me the answer.
Quote from: Biker WcW on May 08, 2009, 10:49:49 pmHAHA! I KNEW IT! YOU ARE USING THE DARK THEME!Therefore, the answer is 10, for binary 3.or Spoiler: ShowHide100, as 100 * 100 = 10000Yes, another guess.
Quote from: winkio on May 08, 2009, 11:33:33 pmHa, I got the answer. I'll pm it to you, or drop it by in chat when no one else is around.
Quote from: winkioI do not speak to bricks, either as individuals or in wall form.
Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.
Quote from: Elite Four NAMKCOR on May 04, 2009, 09:49:04 amSpoiler: ShowHide
loop do if $game_variables == nil $game_variables = Game_Variables.new end print "I will not throw paper airplanes in class." $game_variables[1] += 1 if $game_variables[1] == 500 break endend
500.times {p 'I will not throw paper airplanes in class.'}
Quote from: Youngster Gi Gi on May 09, 2009, 02:32:15 pmQuote from: Elite Four NAMKCOR on May 04, 2009, 09:49:04 amSpoiler: ShowHidePLace this in a script above mainSpoiler: ShowHideloop do if $game_variables == nil $game_variables = Game_Variables.new end print "I will not throw paper airplanes in class." $game_variables[1] += 1 if $game_variables[1] == 500 break endend
var = 0loop do print "I will not throw paper airplanes in class." var += 1 if var == 500 break endend
#include <iostream>int main () { for (int n = 0; n < 500; ++n) std::cout << "I will not throw paper airplanes in class" << (n == 499 ? "." : ";") << std::endl;}
Quote from: Rival Blizzard on May 09, 2009, 03:10:48 pm500.times {p 'I will not throw paper airplanes in class.'}
Quote from: Rival Blizzard on May 09, 2009, 05:26:38 pmQuote from: Rival Blizzard on May 09, 2009, 03:10:48 pm500.times {p 'I will not throw paper airplanes in class.'}
print "I will not throw paper airplanes in class.\n" * 500