Draw a sine curve

Source: Internet
Author: User

 


// Draw a sine curve program

Import java. applet .*;
Import java. awt .*;
Import java. awt. event .*;
Public class ko12_3 extends Applet implements ActionListener
{
Int x, y;
Double;
Button bn1 = new Button ("Sin waveform ");
Button bn2 = new Button ("clear ");
Public void init ()
{
Add (bn1 );
Add (bn2 );
Bn1.addActionListener (this );
Bn2.addActionListener (this );
}
Public void actionreceivmed (ActionEvent e)
{
Graphics g = getGraphics ();
If (e. getSource () = bn1)
{
For (x = 0; x <= 360; x + = 9)
{
A = Math. sin (x * Math. PI/180 );
Y = (int) (80 + 40 * );
G. drawString ("*", x, y );
}
}
If (e. getSource () = bn2)
Repaint ();
}
}
// Ko12_3.html
<Applet code = "ko12.3class" width = 280 height = 160>
</APPLET>

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.