If the US Annexes us, the UK will be all over them. If the US nukes the UK, Europe will be all over them if the US nukes Europe, then there will be a nuclear winter all over the world.Only in a swine flu thread.
I won't be getting it until it's cheap ($20 or so)
The Collider, the Particle and a Theory About FateTONIGHT ON FOX NEWS.. IS THE LHC MOLESTING YOUR CHILDRENS?!
t's like you're forced by somebody to hammer a nail into your head, in the middle. Chances are the nail won't hit the brain, but those chances are small. The other chance, hitting the brain and provoking instant death are translated as RISKS. So yes, we're all force to take part at this experiment, we either survive or we either face the risks.What on earth makes you think a bad outcome of the experiment is as inevitable as brain damage from a nail hammered into your skull? Also, this being a multi-billion international project and all, do you actually think all those phDs conducting are that helpless, yet willing to push the experiment forward? If the danger of this vaporizing the Solar System were as big as you're depicting, none of it would be funded in the first place. Silly superstitious assumptions are silly.
I don't know the C++ equilevant of the Select Case statementIt's
[blue]switch[/blue]
. Here's the syntax should you need it, Striker.
[blue]switch[/blue] (<variable>) {
[blue]case[/blue] <value>:
do stuff
[blue]break[/blue];
[blue]case[/blue] <another value>:
do stuff
[blue]break[/blue];
[blue]default[/blue]:
<works like the else statement in if; if none of the previous conditions are met, it does whatever you specify here>
[blue]break[/blue];
}
I don't know the C++ equilevant of the Select Case statementIt's
[blue]switch[/blue]
[blue]char[/blue] word[30] = {[m]''[/m]};
That'll set every element in your array to null.