在Java小程序中画笑脸
给定的任务是在Java Applet 中画一个笑脸。
方法:
- 创建三个椭圆,一个用于脸部,两个用于眼睛。
- 用黑色填充椭圆形的眼睛。
- 为脸上的微笑创建一个弧线。
下面是上述方法的实现:
小程序程序:
Java
// Java program to Draw a
// Smiley using Java Applet
import java.applet.*;
import java.awt.*;
/**/
public class Smiley extends Applet {
public void paint(Graphics g)
{
// Oval for face outline
g.drawOval(80, 70, 150, 150);
// Ovals for eyes
// with black color filled
g.setColor(Color.BLACK);
g.fillOval(120, 120, 15, 15);
g.fillOval(170, 120, 15, 15);
// Arc for the smile
g.drawArc(130, 180, 50, 20, 180, 180);
}
}
输出:
注意:要在命令行中运行小程序,请使用以下命令
> javac Smiley.java
> appletviewer Smiley.java
您也可以参考 https://www.geeksforgeeks.org/different-ways-to-run-applet-in-java 来运行小程序程序。