Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~416 People Reached
Favorite Forums
Favorite Tags
Member Avatar for justin96b

so here is my code -- whenever i try to compile it says SYNTAX error [CODE] #include <stdio.h> long FindMaximum(long* numbers, int count) { long max = numbers[0]; int i; for(i = 0; i< count; i++) { if (numbers[i] > max) { max = numbers[i]; } } return max; } …

Member Avatar for Nick Evan
0
145
Member Avatar for justin96b

So, i am trying to have an explosion when the asteroid and house collides. And i think i have the code written down, but something might me be missing. Please help me figure this out. Thanks a lot. [CODE]# Fresh Start # Classes: House; Asteroid; Explosion from livewires import games …

Member Avatar for TrustyTony
0
271