Wrong, black is not a colour.Kheldragar wrote:
Black is a colour.
Wrong, black is not a colour.Kheldragar wrote:
Black is a colour.
It can be both!silmarilen wrote:
no it's a word
It's a Japanese airplane, patented in 1937 and first produced in 1940.Kheldragar wrote:
Zero is a number.
Saburo Sakai's book "Samurai!" sheds light into the subject too. (:Aurani wrote:
It's a Japanese airplane, patented in 1937 and first produced in 1940.Kheldragar wrote:
Zero is a number.
Someone here likes books a lot. :polivia272 wrote:
Saburo Sakai's book "Samurai!" sheds light into the subject too. (:
If black is not a colour, why we can see it? :/Zelda wrote:
Wrong, black is not a colour.Kheldragar wrote:
Black is a colour.
Another way of asking the question would be: what is in a tube of black paint?Trash Boat wrote:
If black is not a colour, why we can see it? :/
Depends, really. Sex is far more enjoyable without one, though, and as long as you're not sleeping with random people every other night, you should be pretty safe health-wise.olivia272 wrote:
Kids, remember to wear a condom.
There is also the possibility to impregnate the other party. Of course women, too, have their own contraception, but I would not, for one momentary and fleeting session of pleasure, risk getting pregnant with something that you are bound with for the rest of your life.Aurani wrote:
Depends, really. Sex is far more enjoyable without one, though, and as long as you're not sleeping with random people every other night, you should be pretty safe health-wise.olivia272 wrote:
Kids, remember to wear a condom.
I have dry, cracking, bleeding lips due to Accutane. Can I be your BFKheldragar wrote:
I bet Aurani has nice, soft lips.
dudeKheldragar wrote:
No because you're in 9th grade like.
im going to cast a spell on him and force him to make out with me until we cant feel our tonguesKheldragar wrote:
I bet Aurani has nice, soft lips.
Riince wrote:
b1rds shouldnt be kept as pets
I see what you did there, you sly dog.Kheldragar wrote:
Riince wrote:
b1rds shouldnt be kept as pets
What happened to the Zoe quinn thread?Brian OA wrote:
I dunno; haven't seen a good one in months and I have no time to make one. Nobody really knows how to make a shitty one into a decent one either.
Whatever happened to your CYOAsBrian OA wrote:
I dunno; haven't seen a good one in months and I have no time to make one. Nobody really knows how to make a shitty one into a decent one either.
I take great pride in my lips, actually, and yes, they're all soft 'n' shit. :VKheldragar wrote:
I bet Aurani has nice, soft lips.
Yesterday I went to bed at 2200. Seems reasonableish.Brian OA wrote:
You're going to stuck between 50% and 100% for a long time.Riince wrote:
my goal of getting more pp and posts than lewa is almost halfway complete
I miss the vocaroos.NoHitter wrote:
Whatever happened to your CYOAsBrian OA wrote:
I dunno; haven't seen a good one in months and I have no time to make one. Nobody really knows how to make a shitty one into a decent one either.
Did you just seriously make a correlation between feminism the nature of all human beings?B1rd wrote:
It's human nature to always have to antagonise something, and to pick sides and ignore any faults of your own. An example is modern feminism and social justice warriors with their claims of oppression and patriarchy, bitching about non-issues like video games, names of bands, T shirts etc. I wish it were more primitive times so we could just beat them over the head with a stick and be done with it.
Be a cool kid and ignore them.Ceph23 wrote:
stupid classmates
let x = 5;What is the value of x after the code has been executed?
while(x<10){x++;}
ascent(i in 6..23){
x = i/2;
}
if(x==(23/2)){x = 25;}else{x = 23;}
let x = 5;
while(x<10){x++;} //x=10
ascent(i in 6..23){
x = i/2;
} //repeats untill x=23/2
if(x==(23/2)){x = 25;}else{x = 23;} //since x==(23/2) is true it sets x to 25
I tried looking for the meaning of "ascent" but found nothing.Granger wrote:
Am i retarded or something?let x = 5;What is the value of x after the code has been executed?
while(x<10){x++;}
ascent(i in 6..23){
x = i/2;
}
if(x==(23/2)){x = 25;}else{x = 23;}
ascent(i in 6..23)means the value of i goes up from 6, 7, 8, ... 23 for each loop, then the final value of i would be 10 because x goes from 5 to 9.
euphoric.Riince wrote:
sometimes i don a fedora and a trench coat and sit alone in a bar feeling badass
Kheldragar nominated for Most Cringeworthy Post 2015Kheldragar wrote:
Fedorable.
You know, mate, I still miss that smoking Touhou avatar. Plenty of people here will agree with me that you should have kept it.Aurani wrote:
On a more relevant topic:
Congrats Boatman, you finally changed that avatar! I quite disliked it, but you kept it for so long. =(
FEDORABLE.Trash Boat wrote:
Kheldragar nominated for Most Cringeworthy Post 2015Kheldragar wrote:
Fedorable.You know, mate, I still miss that smoking Touhou avatar. Plenty of people here will agree with me that you should have kept it.Aurani wrote:
On a more relevant topic:
Congrats Boatman, you finally changed that avatar! I quite disliked it, but you kept it for so long. =(
i was hoping for something nice, but i was disappointed:(Frostei wrote:
"From the creators of [insert name here] comes a tale of one psychotic bitch's quest for sexual gratification. She will stop at nothing to achieve her goal, even if it means raping her victims to death!"
Dude what
The while loop is seperate from the ascent loop but you got that right with how ascent works.piruchan wrote:
I tried looking for the meaning of "ascent" but found nothing.Granger wrote:
Am i retarded or something?let x = 5;What is the value of x after the code has been executed?
while(x<10){x++;}
ascent(i in 6..23){
x = i/2;
}
if(x==(23/2)){x = 25;}else{x = 23;}I'm probably wrongAssuming thatascent(i in 6..23)means the value of i goes up from 6, 7, 8, ... 23 for each loop, then the final value of i would be 10 because x goes from 5 to 9.
First loop: x=5, i=6
Second loop: x=6, i=7
Third loop: x=7, i=8
Fourth loop: x=8, i=9
Fifth loop: x=9, i=10
The loop then stops because the condition is x<10.
If this is true than x won't reach 23/2, so the value of x after the code is executed would be 23.
25Granger wrote:
The while loop is seperate from the ascent loop but you got that right with how ascent works.
I think that we could ignore the while loop in its entirety actually, as the ascent loop has no condition regarding x, it just runs untill i=23 starting with i=6 and incrementing i by one with each loop. I think.
#include <iostream>
int main() {
int x = 5;
while (x < 10) {
x++;
}
for (int i = 6; i <= 23; i++) {
x = i / 2;
}
if (x == (23 / 2)) {
x = 25;
}
else {
x = 23;
}
std::cout << x << std::endl;
system("pause");
return 0;
}