one last question
is there any way to print the text in a new window? oh and btw how do u use the code for codes?
this the source:
class PhysicsTest
{
public static void main(String[] args)
{
System.out.println("Hey there");
try
{
Thread.sleep(2000);
}
catch (InterruptedException exc) {}
System.out.println("How are You! ");
try
{
Thread.sleep(2000);
}
catch (InterruptedException exc) {}
System.out.println("See if you know the answers to these questions.");
try
{
Thread.sleep(2000);
}
catch (InterruptedException exc) {}
System.out.println("Ok Grab a Pen and some Paper!");
try
{
Thread.sleep(2000);
}
catch (InterruptedException exc) {}
System.out.println("Right ready? Ok Lets start. Answer the questions.");
}
} // end class PhysicsTest

