Skip to main content

Applet program to find a number is prime or not using Java

import java.applet.*;
import java.awt.*;
import java.awt.event.*;
/*

<applet code="prime.class" width="500" height="600">
</applet>

*/
public class prime extends Applet implements ActionListener
{
Label lbl1;
TextField txt1,txt2;
Button btn1;
public void init()
{
lbl1=new Label("Enter any Number : ");
txt1=new TextField(20);
txt2=new TextField(20);
btn1=new Button("Check");
setLayout(null);

txt2.setBounds(130,50,200,20);
add(txt2);
txt1.setBounds(230,100,120,20);
add(txt1);
lbl1.setBounds(100,100,120,20);
add(lbl1);
btn1.setBounds(100,120,40,20);
add(btn1);
btn1.addActionListener(this);
}
public void actionPerformed(ActionEvent ae)
{
String num1=txt1.getText();
int i;
int k=0;
int num;
String str1="Prime no.";
String str2="Not Prime no.";
num=Integer.parseInt(num1);
for(i=1;i<=num;i++)
{
if(num%i==0)
{
k++;
}
}
if(ae.getSource()==btn1)
{
if(k==2)
{
txt2.setText(str1);
}

else
{
txt2.setText(str2);
}
}
}
}


Comments

  1. That was a great message in my carrier, and It's wonderful commands like mind relaxes with understand words of knowledge by information's.
    Devops Training courses
    python Training in chennai
    Devops Training in Bangalore

    ReplyDelete
  2. After reading this web site I am very satisfied simply because this site is providing comprehensive knowledge for you to audience.
    Thank you to the perform as well as discuss anything incredibly important in my opinion. We loose time waiting for your next article writing in addition to I beg one to get back to pay a visit to our website in



    selenium training in Bangalore
    selenium training in Marathahalli
    selenium training in Btm layout
    selenium training in Jaya nagar
    selenium training in Electronic city
    selenium training in Kalyan nagar

    ReplyDelete
  3. I simply wanted to write down a quick word to say thanks to you for those wonderful tips and hints you are showing on this site.
    python training in chennai
    Python Online training in usa
    python course institute in chennai

    ReplyDelete
  4. Can you please share output of this program

    ReplyDelete
  5. I need to write it in my assignment..

    ReplyDelete

Post a Comment