-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserIn.java
More file actions
39 lines (33 loc) · 801 Bytes
/
UserIn.java
File metadata and controls
39 lines (33 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import java.awt.*;
import java.applet.Applet;
public class UserIn extends Applet {
TextField text1, text2;
@Override
public void init() {
text1=new TextField(8);
text2=new TextField(8);
add (text1);
add (text2);
text1.setText("0");
text2.setText("0");
}
@Override
public void paint (Graphics g)
{
int x=0, y=0, z=0;
String s1, s2, s;
g.drawString ("Input a number in each box", 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);
}
}