Witshaper is the Professional (Computing Skills, English Learning and Soft Skills) Skill Development Training Center. We provide Professional IT Courses and Soft Skill Training in Dehradun to Students, Employees and organization. Who wish to pursue a career in IT Technology. Witshaper is led by a motivated team of IT experts and Soft Skill Professionals. We provide high quality trainings. Our Emphasis is on giving the practical knowledge to the students, so that they will get to know in depth and never forget what they opt, we provide to the students real learning environment. Witshaper prepares students and professionals to be the part of this growing industry. Be a part of Witshaper and get your dreams successful

Wednesday 13 May 2015

java Applet example of EventListeners,ActionListener(Addition ,Subtract,Multiply,Divide)

import java.applet.*;
import java.awt.event.*;
import java.awt.*;
 
public class EventListeners extends Applet implements ActionListener{
   TextArea txtArea;
   String Add, Subtract,Multiply,Divide;
   int i = 10, j = 20, sum =0,Sub=0,Mul = 0,Div = 0;
   public void init(){
   txtArea = new TextArea(10,20);
   txtArea.setEditable(false);
   add(txtArea,"center");
   Button b = new Button("Add");
   Button c = new Button("Subtract");
   Button d = new Button("Multiply");
   Button e = new Button("Divide");
   b.addActionListener(this);
   c.addActionListener(this);
   d.addActionListener(this);
   e.addActionListener(this);
   add(b);
   add(c);
   add(d);
   add(e);
   }

   public void actionPerformed(ActionEvent e){
   sum = i + j;
   txtArea.setText("");
   txtArea.append("i = "+ i + "\t" + "j = " + j + "\n");
   Button source = (Button)e.getSource();
   if(source.getLabel() == "Add"){
   txtArea.append("Sum : " + sum + "\n");
   }
  
   if(i >j){
   Sub = i - j;
   }
   else{
   Sub = j - i;
   }
   if(source.getLabel() == "Subtract"){
   txtArea.append("Sub : " + Sub + "\n");
   }
   Mul = i*j;
   if(source.getLabel() == "Multiply"){
   txtArea.append("Mul = " + Mul + "\n");
   }
   if(i > j){
   Div = i / j;
   }
   else{
   Div = j / i;
   }
   if(source.getLabel() == "Divide"){
   txtArea.append("Divide = " + Div);
   }
   }
 }

No comments:

Post a Comment