mjrox88

Greenhorn
+ Follow
since Nov 18, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by mjrox88

I'm in a computer science class and I have to write a poker program where the client plays a "robot". I already have everything nailed down except the code for the "robot" i.e. If somebody could help me write the code for the computer player it would be greatly appreciated
18 years ago
The directory is C:\JavaP\Programming\SlotMachine\Wheel.java
that is for the Wheel program
The directory for the SlotMachine program is C:\JavaP\Programming\SlotMachine\SlotMachine.java

this program works fine in my school but not at my home
19 years ago
Im having a problem with my SlotMachine program. I have 2 seperate classes saved, a class "Wheel" and a class "SlotMachine". Look at the SlotMachine code:
public class SlotMachine
{
private Wheel w1,w2,w3;
/** Default constructor creates 3 wheels*/
public SlotMachine()
{
w1 = new Wheel();
w2 = new Wheel();
w3 = new Wheel();
}

this is just the beginning of the code, but i get an error that says that it can't resolve symbol for class Wheel, but I compiled the wheel program just fine and this should work. This program works at my school but not at home.
19 years ago
Im having a problem with my SlotMachine program. I have 2 seperate classes saved, a class "Wheel" and a class "SlotMachine". Look at the SlotMachine code:


this is just the beginning of the code, but i get an error that says that it can't resolve symbol for class Wheel, but I compiled the wheel program just fine and this should work. This program works at my school but not at home.

(Edited by JAM to add the [CODE] and [/CODE] tags)
[ November 20, 2004: Message edited by: Joel McNary ]
19 years ago