Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~2K People Reached

9 Posted Topics

Member Avatar for Bulls2012

Other than your code not being complete, what you have seems to be spot on. you still have to insert a constructor that accepts all the values and sets the appropriate data members to the values and you still need to make sure your yearsWorked only accepts positive values, but …

Member Avatar for ragedsparrow
0
377
Member Avatar for l1nuxuser

Do you have to download a connector for MySQL to link to C++ ? (was working on a project in Visual Basic and had to download the connector for it to properly connect)

Member Avatar for Ancient Dragon
0
204
Member Avatar for Loki55

For what you are doing, it might be best to use a for loop. Such as: [CODE] #include <iostream> using namespace std; int main() { int number[5]; for (int i = 0; i<5; i++) { number [i] = i + 1; cout << number << endl; } system("PAUSE"); return 0; …

Member Avatar for ragedsparrow
0
105
Member Avatar for fadi_1234
Member Avatar for Teyz-M
Member Avatar for ragedsparrow

HEy everyone. I've been workign on this for a few days now and it's due tomorrow, so I thought I would ask a developer community for any input. Here is what is supposed to be happening. The Server starts. The Client Starts. The user enters a table name into the …

Member Avatar for ragedsparrow
0
162
Member Avatar for BobbieJean

[CODE]import java.awt.*; import java.awt.Graphics; import java.lang.Object; import java.awt.event.*; import javax.swing.*; import java.util.*; public class NewJApplet extends JApplet implements ActionListener { public Graphics brush ; Random rand = new Random(); int number1 = rand.nextInt(10); int number2 = rand.nextInt(10); JLabel question = new JLabel("What is " + number1 + " times " …

Member Avatar for ragedsparrow
0
226
Member Avatar for luttinj

I ran it, and it works on my IDE, it has to be your IDE. I agree with masijade though, you have Applet extended but you've coded for console IO.

Member Avatar for luttinj
0
120
Member Avatar for ghostrida45

Since you are dragging the player with the mouse, have you tried making a mouseover event for the balls?

Member Avatar for ghostrida45
0
117

The End.