ファイル名
Exercise19.java
ソース例
class Exercise19{
public static void main(String[] args){
int t;
AnimationFrame af=new AnimationFrame();
af.setSize(600 , 300);
af.setImage("car.gif");
for(t=0;t<100;t++){
if(t<50){
af.drawImage("car.gif" , t*6 , 150 , 200);
af.paintFrame();
}else{
af.drawImage("car.gif" , 600-(t*6) , 150 , 200);
af.paintFrame();
}
}
}
}
実行結果

