sorry...I tried to highlight tags but it is not working....I will figure it out. In the mean time, I really need help with the below code. I removed the class ffrom another class it was the mistake I made. but, it is still throwing error "Error: Could not find or load main class Test3" is the error valid.
package test;
class multipleAssignment
{
public static void main(String[] args)
{
int i,j,k;
i=j=k=10;
System.out.println("i="+i+" j="+j+" k="+k);
}
}