Mythruna

General Category => General Discussion => Topic started by: Iggyjeckel on December 13, 2012, 04:45:47 PM



Title: Finals!
Post by: Iggyjeckel on December 13, 2012, 04:45:47 PM
100] java test, 100% class grade

85% advanced c++ test :(, 93% final grade

Not sure on system analyst class yet
Woot


Title: Re: Finals!
Post by: BenKenobiWan on December 13, 2012, 06:25:12 PM
Congratulations!


Title: Re: Finals!
Post by: Michael on December 13, 2012, 06:41:56 PM
Congratz! My turn :D

Mind helping me iggy? (just with little things like bugs)
Boo, I just let y'all know I am making a game :'(
It was supposed to be a secret!


Title: Re: Finals!
Post by: Iggyjeckel on December 13, 2012, 06:58:55 PM
What kind of bugs you running into?


Title: Re: Finals!
Post by: nh_99 on December 13, 2012, 07:17:24 PM
Nice job iggy! My school doesn't offer any type of programming which is awful but I self tutor myself, so I have learned quite a bit.


Title: Re: Finals!
Post by: pspeed on December 13, 2012, 07:46:07 PM
What kind of bugs you running into?

This seems like in a horror movie when that one person goes down to the basement by themselves... "I'm sure it's totally safe." ;)


Title: Re: Finals!
Post by: Iggyjeckel on December 13, 2012, 08:28:53 PM
Lol, oh that bug standing in the corner with the dirt floor


Title: Re: Finals!
Post by: Michael on December 13, 2012, 09:33:40 PM
Iggy, they aren't really bugs (just me not knowing what loop to put so it doesn't print continuously, I will consult you tomorrow after school (when I have laptop) via PM. Thank you!


Title: Re: Finals!
Post by: Moonkey on December 13, 2012, 10:10:54 PM
My online school has game-design. The program costs about 130-120$ but my school gets a 30% discount so it's 80$.


Title: Re: Finals!
Post by: Iggyjeckel on December 13, 2012, 11:16:21 PM
Nwxt semester im taking asp.net and game programming


Title: Re: Finals!
Post by: Iggyjeckel on December 14, 2012, 08:42:47 PM
Favorite bug

for (i = 0; i < SIZE; i++};
{
   //code
}


Title: Re: Finals!
Post by: pspeed on December 14, 2012, 10:02:56 PM
Favorite bug

for (i = 0; i < SIZE; i++};
{
   //code
}

Heheheh.


Title: Re: Finals!
Post by: pspeed on December 14, 2012, 10:03:37 PM
In C/C++, this is another good one:

Code:
if (z=1) {
    // do stuff
}


Title: Re: Finals!
Post by: Blackslash on December 14, 2012, 10:34:32 PM
Congratz! My turn :D

Mind helping me iggy? (just with little things like bugs)
Boo, I just let y'all know I am making a game :'(
It was supposed to be a secret!

can i play im young so i know what kids like


Title: Re: Finals!
Post by: Iggyjeckel on December 14, 2012, 10:50:13 PM
In C/C++, this is another good one:

Code:
if (z=1) {
    // do stuff
}

Wow im tired took me 2 passes to see it


Title: Re: Finals!
Post by: pspeed on December 14, 2012, 11:10:11 PM
In C/C++, this is another good one:

Code:
if (z=1) {
    // do stuff
}

Wow im tired took me 2 passes to see it

It's possible to let the compiler detect it with full warnings on sometimes.  Java specifically disallows this sort of thing since boolean expressions must be of type boolean.  But it's bad for a few reasons because a) the if will always succeed and b) it will corrupt the value of z at the same time.


Title: Re: Finals!
Post by: Iggyjeckel on December 14, 2012, 11:36:43 PM
yeah after i looked at it a second time i did the face palm thing and went...yup done that my before in my first semester lol