I typed the following command at the prompt
set CLASSPATH=
and it worked. Any ideas ??
In which directory are the base JAVA classes
present, when we download JDK and how do we view
them (their source)??
BTW here is the code, very simple program
******************************
public class
test {
public static void main(
String[] args)
{
int count = 0, sum = 0;
do
{
System.out.println("Count 1 " + count);
if(count % 3 == 0)
{
System.out.println(count%3);
continue;
}
System.out.println("Count 2 " + count);
System.out.println("Sum 1 " + sum);
sum+=count;
System.out.println("Sum 2 " + sum);
}
while(count++ < 11);
System.out.println("Final Sum " + sum);
}
}
***********************
TIA