Skip to content

Instantly share code, notes, and snippets.

@MinSomai
Created February 22, 2020 19:13
Show Gist options
  • Save MinSomai/0709b2c05fd6fc09f680dd637a2a1f9e to your computer and use it in GitHub Desktop.
Save MinSomai/0709b2c05fd6fc09f680dd637a2a1f9e to your computer and use it in GitHub Desktop.
Oval13.java
package hw;
import java.awt.*;
import java.applet.*;
public class Oval13 extends Applet {
public void init() {
setBackground(Color.YELLOW);
setForeground(Color.GREEN);
}
public void paint(Graphics g) {
g.drawOval(10,10,50,50);
g.fillOval(100,10,75,50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment