Message from @Leonidas

Discord ID: 622641558587441162


2019-09-11 02:54:18 UTC  

why is france the healthiest country in the world according to who

2019-09-11 06:48:16 UTC  

Knife stabbings is not seen as a health issue

2019-09-11 15:28:16 UTC  

damn

2019-09-11 15:28:33 UTC  

https://cdn.discordapp.com/attachments/423219052849397773/621366400748879886/unknown.png

2019-09-11 16:43:08 UTC  

Jealous

2019-09-11 16:44:37 UTC  

reeee lol

2019-09-11 16:47:35 UTC  

That just download or symmetrical

2019-09-11 16:55:05 UTC  

based

2019-09-11 16:57:59 UTC  

Boss be like

2019-09-11 16:58:18 UTC  

Why are you always staring at the background when I come in?

2019-09-11 16:58:24 UTC  

heh

2019-09-11 16:58:31 UTC  

you have some other stuff up underneath

2019-09-11 17:02:53 UTC  

I used to do that when I was younger

2019-09-11 17:03:15 UTC  

Just smash CRL+D when people walked in

2019-09-11 17:03:25 UTC  

Which brings you to the background

2019-09-11 17:03:43 UTC  

But I set a screenshot of an IDE as my background

2019-09-11 17:03:55 UTC  

<:makes_you_think:382980749780844554>

2019-09-11 17:04:01 UTC  

lmao

2019-09-15 03:55:15 UTC  

been fucking with GANs lately

https://cdn.discordapp.com/attachments/423219052849397773/622641557933260820/HomerGANx256.gif

2019-09-15 08:16:40 UTC  

Doh

2019-09-17 03:53:12 UTC  

why does this not run at all, it just ends

int main()
{
int i, a;
vector<int>x = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};

while(i = 0, i++)
{
cin >> i >> a;
while (i==x[i]){
cout << "\n" << i << " " << a << "\n";
break;}
}
}

2019-09-17 04:00:06 UTC  

well it does

2019-09-17 04:00:17 UTC  

i know

2019-09-17 04:00:23 UTC  

it doesn't do what i want it to

2019-09-17 04:01:06 UTC  

i want it to compare x to each element in the list

2019-09-17 04:01:06 UTC  

wait

2019-09-17 04:01:15 UTC  

why the fuck are you cinning

2019-09-17 04:01:41 UTC  

compare i to each element in the list

2019-09-17 04:01:53 UTC  

o nvm

2019-09-17 05:04:49 UTC  
2019-09-17 06:10:45 UTC  

this code has no errors but it doesn't do what I want it to do

2019-09-17 06:10:45 UTC  

int main()
{
int i, a, x;

while(x = 0, x < 10, x++){
cin >> i >> a;
cout << "\n" << i << " " << a << "\n";
}
}

2019-09-17 06:11:52 UTC  

it should output what's input

2019-09-17 06:11:59 UTC  

and do so within the loop

2019-09-17 06:12:08 UTC  

instead it doesn't seem to read any code

2019-09-17 06:12:27 UTC  

i have the proper #include statements

2019-09-17 06:28:48 UTC  

so, two things..

2019-09-17 06:28:59 UTC  

in a while, you can't use the three pronged statement