import javax.swing.*;
import java.awt.*;
public class exa9_9  extends JApplet{
	public void paint(Graphics g ){
		Font f=new Font("",Font.ITALIC,25);
		g.setFont(f);
		g.drawString("ǰΪ"+f.getName(),40,40);
		g.drawString("ǰֺΪ"+f.getSize(),60,60);
	}			
}
