Write a program that creates a user interface to perform integer divisions easy example 1

Write a program that creates a user interface to perform integer divisions

An interface in Java is a template of a class. It has static constants and abstract methods.

Java has a mechanism to achieve interface abstraction. The Java interface can only contain abstract methods, not method entities. It is used to achieve abstraction and multiple inheritance in Java.

In other words, you can say that interfaces can contain abstract methods and variables. It cannot be a method body.

Aim to write a program that creates user interface

To write a program that creates a user interface to perform integer divisions. The user enters two numbers in the text fields, Num1 and Num2. The division of Num1 and Num2 is displayed in the Result field when the Divide button is clicked. If Num1 or Num2 were not an integer, the program would throw a NumberFormatException. If Num2 were Zero, the program would throw an ArithmeticException Display the exception in a message dialog box.

Description:

  1. NumberFormatException arises when a non-integer is divided with any non-integer value.
  2. ArithmeticException arises when a number is divided by zero.

Read input of two values, click on compute. If there is any NumberFormatException, a dialog is raised. If there is any ArithmeticException, another dialog is raised.

Source code to write a program that create user interface

import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.applet.*;
public class Week10 extends Frame implements ActionListener
{
Dialog d;
TextField t1,t2,t3;
Button comp;
public Week10()
{
setLayout(new FlowLayout());
setSize(500,500);
t1=new TextField(10);
t2=new TextField(10);
t3=new TextField(10);
comp=new Button("Compute ");
add(new Label("Enter a: "));
add(t1);
add(new Label("Enter b: "));
add(t2);
add(new Label("Result : "));
add(t3);
add(comp);
comp.addActionListener(this);
setVisible(true);
}
pubic void actionPerformed(ActionEvent ae)
{
if(ae.getSource()==comp)
{
try
{
t3.setText(Integer.toString((Integer.parseInt(t1.getText().trim()))/(Integer.parseInt(t2.getText().trim()))));
}
catch(ArithmeticException aex)
{
Dia d1=new Dia("Arithmetic Exception");
d1.setVisible(true);
}
catch(NumberFormatException nfe)
{
Dia d2=new Dia("Number Format Exception ");
d2.setVisible(true);
}
}
}
public static void main(String ar[])
{
new Week10();
}
}
class Dia extends Dialog implements ActionListener
{
Button cancel;
Dia(String str)
{
super(new Frame(),str,true);
cancel=new Button("Cancel");
setLayout(new FlowLayout());
setSize(300,200);
add(new Label("Press the Button"));
add(cancel);
cancel.addActionListener(this);
}
public void actionPerformed(ActionEvent ae)
{
setVisible(true);
}
public void paint(Graphics g)
{
g.drawString("Exception Occured ",10,70);
}
}
a

OUTPUT

without any exceptions

Write a program that creates a user interface
without any exception

Number Format Exception

 Number Format Exceptions
Number Format Exception
Numbers Format Exception

Arithmetic Exception

Arithmetic Exception
Write a program Arithmetic Exceptions

Recommended Post:

Find the solution to the salesforce Question and many more

Pramod Kumar Yadav is from Janakpur Dham, Nepal. He was born on December 23, 1994, and has one elder brother and two elder sisters. He completed his education at various schools and colleges in Nepal and completed a degree in Computer Science Engineering from MITS in Andhra Pradesh, India. Pramod has worked as the owner of RC Educational Foundation Pvt Ltd, a teacher, and an Educational Consultant, and is currently working as an Engineer and Digital Marketer.



Leave a Comment