blob: 540706d3adbd6f20d50a409822755eb7e4036b0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import javax.swing.JFrame;
public class InfiniteIntegerCalculator
{
public static void main(String[] args)
{
JFrame frame = new InfiniteIntegerCalculatorFrame();
frame.setTitle("Infinite Integer Calculator");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(600,300);
frame.setVisible(true);
}
}
|