Commented 16 years ago2008-05-04 04:47:32 UTC
in journal: #5044Comment #58622
potatis when the first case is true the break will stop analyzing the next cases, so since there is nothing alce to analyze after last case there is no point of adding another break; I know its not an elegant code it could be writed in many other ways but you wont run out of ram, this shit its like a big loop but its stoped by switch so it wont eat ur ram neither cpu.
Commented 16 years ago2008-05-03 19:26:27 UTC
in journal: #5044Comment #58621
-potatis i'm calling main that after it ends to start again. I havnt forgot anything. There is no point of using break; after last case.For the ram thing its easy to use Sleep(100). but its just like saing typeing /me dosent work:O. -spike Switch can aslo be made with If. If you like programming/or want to learn C++ its a good choice, its portable and you dont need frameworks like vb.net. If you dont know the basics cygwin is useless.
Commented 16 years ago2008-04-30 14:46:08 UTC
in journal: #5040Comment #39260
is this familiar to you?
BEST PRICE ! Buy Cialis, Viagra online NOW - and save 50% your money !!!
another one -
Dear Lucky Winner,
This E-mail is to inform you that you emerged a winner on our online draws which was played on the 10th of February,2008.You have therefore been approved to claim a total sum of ?1.000.000.00 For further Information about your Winnings,contact
Commented 17 years ago2007-01-02 09:03:52 UTC
in vault item: fy_magic_fountainComment #13885
nah is not my first one, i've abandoned this map in summer, but i thought to upload it as an inspiration for others :p. I know that it sucks a little.... about
-spike Switch can aslo be made with If. If you like programming/or want to learn C++ its a good choice, its portable and you dont need frameworks like vb.net. If you dont know the basics cygwin is useless.
using namespace std;
int main(){
char yesno;
system("color b");
cout << "Hello? i'm Spike te programator" << endl;
cout << "Do i suck or not?: y/n" << endl;
cin >> yesno;
switch(yesno)
{
case 'y' : break;
case 'n' : default: }
system("pause");
system("CLS");
return main();
}