This is only my fourth week of class and I am not sure what you mean by code and code tags. This is the entire program with what I tried to enter along with the comments of what I am suppose to do for class with this project. The component side compiled but not the test side. thanks
Anyone want to help? My class side compile but not sure if it is right! Tester side needs help..
public class LastNameFirstName_BankAccount
{
//Class's Instance Variables
private double balance;
private String name;
//Instance Constructor
//Student: Write the instance...
This is the class side of the program Thanks for your help, this side compiled.
public class RistDouglas_DoubleMyNumber
{
//Instance Variables
private int num, myNumber;
//Instance Constructor
public RistDouglas_DoubleMyNumber()
{
this.num = myNumber;
}...
I am getting this error while compiling this: Any help would sure be welcomed. I am in my first year and never dreamed it could be this hard.
E:\RistDouglas_DoubleMyNumberTester.java:21: cannot find symbol
symbol : constructor RistDouglas_DoubleMyNumber(int)
location: class...
I found what I was missing, it was declaring the color. I did have the import java.awt.color loaded but it did not find the symbol, as soon as I put in Color myColor; it compiled I do need to know how to set a color not using the word red or green etc with using the numbers (255, 200,150)...I...