Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
0 Endorsements
~955 People Reached
Favorite Tags
Member Avatar for DenverWDGuy

A friend of mine has an idea for a mobile game that he thinks could be the next Angry Birds. ;) I've heard the idea and it really does sound like a fun game, but neither him nor I have mobile development experience, or any real development experience of any …

Member Avatar for DenverWDGuy
0
269
Member Avatar for addbot101

/*Does the Bubble sort algorithm above sort the array into ascending or descending order?*/ void BubbleSort(int Data[ ],int ArraySize) { char sorted = ‘f’; int pass,a,Temp; pass = 1; while (sorted=='f' && pass<=ArraySize-1) { sorted = 't'; for (a=0;a<ArraySize - pass;a++) { if (Data[a] < Data[a+1]) { Temp = Data[a]; …

Member Avatar for rubberman
0
123
Member Avatar for addbot101

You are to write a program to track the vehicles that are parked in and out of a parking lot. When the program runs, the user should be able to the total and available parking spaces. The program should also display the menu: [1] In [2] Out [3] View Parking …

Member Avatar for ravenous
-3
563