Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import javax.swing.JOptionPane;

public class Main {

    public static void main(String[] args) {
        String input = JOptionPane.showInputDialog("Enter the x coordinate of the circle");
        int xc = Integer.parseInt(input);
        System.out.println(xc);
    }
}