0% found this document useful (0 votes)
16 views3 pages

Program No 11

Uploaded by

dreamsapnapbozo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views3 pages

Program No 11

Uploaded by

dreamsapnapbozo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

PROGRAM NO:- 11

AIM:- To write a program to develop an analog clock using Applet.

SOURCE CODE:-
import java.applet.Applet;
import java.awt.*;
import java.util.*;
public class analogClock extends Applet{
public void init(){
this.setSize(new Dimension(800, 400));
setBackground(new Color(50, 50, 50));
new Thread(){
public void run(){
while (true){
repaint();
delayAnimation(); } } }.start(); }
private void delayAnimation(){
try{
Thread.sleep(1000); }
catch (InterruptedException e){
e.printStackTrace(); }}
public void paint(Graphics g){
Calendar time = Calendar.getInstance();
int hour = time.get(Calendar.HOUR_OF_DAY);
int minute = time.get(Calendar.MINUTE);
int second = time.get(Calendar.SECOND);
if (hour > 12){
hour -= 12; }
g.setColor(Color.white);
g.fillOval(300, 100, 200, 200);

NAMIT GUPTA,
IT-A,
163
g.setColor(Color.black);
g.drawString("12", 390, 120);
g.drawString("9", 310, 200);
g.drawString("6", 400, 290);
g.drawString("3", 480, 200);
double angle;
int x, y;
angle = Math.toRadians((15 - second) * 6);
x = (int)(Math.cos(angle) * 100);
y = (int)(Math.sin(angle) * 100);
g.setColor(Color.red);
g.drawLine(400, 200, 400 + x, 200 - y);
angle = Math.toRadians((15 - minute) * 6);
x = (int)(Math.cos(angle) * 80);
y = (int)(Math.sin(angle) * 80);
g.setColor(Color.blue);
g.drawLine(400, 200, 400 + x, 200 - y);
angle = Math.toRadians((15 - (hour * 5)) * 6);
x = (int)(Math.cos(angle) * 50);
y = (int)(Math.sin(angle) * 50);
g.setColor(Color.black);
g.drawLine(400, 200, 400 + x, 200 - y); }}

NAMIT GUPTA,
IT-A,
163
OUTPUT:-

NAMIT GUPTA,
IT-A,
163

You might also like