📄 b0c8207d7919001c1ca6c8d4ab93e775
字号:
import java.awt.Color;
import java.awt.Graphics;
public class Tank {
private int x=30;
private int y=50;
public Tank(int x,int y)
{
this.x=x;
this.y=y;
}
public void paint(Graphics g)
{
Color c=g.getColor();
g.setColor(Color.RED);
g.fillOval(x,y,50,50);
g.setColor(c);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -