- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
9 Posted Topics
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 …
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)
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; …
What is the max RAM capacity of the motherboard?
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 …
[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 " …
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.
Since you are dragging the player with the mouse, have you tried making a mouseover event for the balls?
The End.
ragedsparrow