import java.awt.*;
import java.applet.*;
public class Applet1 extends Applet
{
public void init( )
{
Label out1=new Label(" ");
Label out2=new Label(" ");
double x,y;
add(out1);
add(out2);
x=Math.random( )*1000;
y=Math.random( )*1000;
if(x<10&y<10) { x*=50; y*=50; }
out1.setText(""+x+"+"+y+" 约等于 ");
out2.setText(""+(int)((x+y)*10000)/10000.0);
}
}
为什么我编译这个程序的时候总是输出“系统找不到文件”