//Dharmendra Bagrecha
import java.awt.*;
import java.applet.*;
/*
<APPLET code="cal.class" width=400 height=400>
</Applet>
*/
public class cal extends Applet
{
TextField text1,text2;
//Button c;
public void init()
{
text1 = new TextField(5);
text2 = new TextField(5);
add(text1);
add(text2);
text1.setText("0");
text2.setText("0");
//c = new Button("Calculate");
//c.addActionListener(this);
}
public void paint(Graphics g)
{
int x=0,y=0,z=0;
String s1,s2,s;
g.drawString("Input Number in boxes :",10,50);
try
{
s1 = text1.getText();
x = Integer.parseInt(s1);
s2 = text2.getText();
y = Integer.parseInt(s2);
}
catch(Exception ex){}
z = x + y;
s = String.valueOf(z);
g.drawString("The Sum is :",10,75);
g.drawString(s,100,75);
z = x - y;
s = String.valueOf(z);
g.drawString("The Minus is :",10,85);
g.drawString(s,100,85);
z = x * y;
s = String.valueOf(z);
g.drawString("The Multiply is :",10,95);
g.drawString(s,100,95);
}
public boolean action (Event event,Object object)
{
repaint();
return true;
}
}
import java.awt.*;
import java.applet.*;
/*
<APPLET code="cal.class" width=400 height=400>
</Applet>
*/
public class cal extends Applet
{
TextField text1,text2;
//Button c;
public void init()
{
text1 = new TextField(5);
text2 = new TextField(5);
add(text1);
add(text2);
text1.setText("0");
text2.setText("0");
//c = new Button("Calculate");
//c.addActionListener(this);
}
public void paint(Graphics g)
{
int x=0,y=0,z=0;
String s1,s2,s;
g.drawString("Input Number in boxes :",10,50);
try
{
s1 = text1.getText();
x = Integer.parseInt(s1);
s2 = text2.getText();
y = Integer.parseInt(s2);
}
catch(Exception ex){}
z = x + y;
s = String.valueOf(z);
g.drawString("The Sum is :",10,75);
g.drawString(s,100,75);
z = x - y;
s = String.valueOf(z);
g.drawString("The Minus is :",10,85);
g.drawString(s,100,85);
z = x * y;
s = String.valueOf(z);
g.drawString("The Multiply is :",10,95);
g.drawString(s,100,95);
}
public boolean action (Event event,Object object)
{
repaint();
return true;
}
}
No comments:
Post a Comment