嘿家伙有这个非常简单的问题,但似乎无法弄清楚必须导入这个包,it
但我不知道将实际文件夹放在 mac 上的哪个位置,不断给出错误package does not exist
,这是一个非常愚蠢的问题,但确实有不知道该怎么做
这是代码(java):
import it.*;
import java.awt.*;
public class pyramidColour
{
public static void main (String[] args)
{
int col1 = (int)(Math.random()*255+1);
int col2 = (int)(Math.random()*255+1);
int col3 = (int)(Math.random()*255+1);
Color newCol = new Color (col1, col2, col3);
Gogga bug= new Gogga();//creating the gogga
Gogga(1,8);
for (int i = 1; i <= 4; i ++)//loop for going up
{
bug.move();
bug.turnRight();
bug.move();
bug.turnLeft();
}
bug.setDirection(bug.DOWN);
for (int i = 1; i <= 3; i ++)//loop for going down
{
bug.move();
bug.turnLeft();
bug.move();
bug.turnRight();
}
bug.move();
bug.turnRight();
for (int i = 1; i <= 7; i ++)//loop for base of pyramid
{
bug.move();
}
}
}
该项目的下一部分是将循环放入一个方法中,任何帮助将不胜感激。