Hallo,
Weiß jemand warum folgender Code nicht funktioniert?
Es passiert nichts
MfG Gamma
Weiß jemand warum folgender Code nicht funktioniert?
Java:
/**
* Write a description of class Orange here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Orange extends Actor
{
/**
* Act - do whatever the Orange wants to do. This method is called whenever
* the 'Act' or 'Run' button gets pressed in the environment.
*/
public void act()
{
for(int a = 0; a >= 10000000; a++)
{
int b = (int)(Math.random()*10)+1;
int c = (int)(Math.random()*10)+1;
setLocation(b,c);
}
}
}
MfG Gamma
Zuletzt bearbeitet: