Logo 
Search:

Java Articles

Submit Article
Home » Articles » Java » Applet programsRSS Feeds

An applet program to display sum of two number of textField

Posted By: Easy Tutor     Category: Java     Views: 24405

Write an applet program to display sum of two number of textField.

Code for An applet program to display sum of two number of textField in Java

/* <applet code="sumOf2No" height=150 width =350>   </applet> */

import java.awt.*;
import java.applet.*;

publicclass sumOf2No extends Applet
{
     TextField T1,T2;

     publicvoid init() {
         T1 = new TextField(10);
         T2 = new TextField(10);
         add(T1);
         add(T2);
         T1.setText("0");
         T2.setText("0");
      }

      publicvoid paint(Graphics g) {
           int a, b, result;
           String str;
           
           g.drawString("Enter Number in TextField to Find addition of 2 No ",10,50);
           g.setColor(Color.red);
           str=T1.getText();
           a=Integer.parseInt(str);
           str=T2.getText();
           b=Integer.parseInt(str);
           result=a+b;
           g.drawString("After Addition the Result is : "+result,10,80);
           showStatus("Addition of 2 Numbers");
        }

        public boolean action(Event e, Object o){
            repaint();
            returntrue;
        }
}
  
Share: 



Easy Tutor
Easy Tutor author of An applet program to display sum of two number of textField is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!