This is how I have it set up
CODE
import java.io.*;
public class Coordinates
{
public static void main(String args[])
{
InputStreamReader isr = new InputStreamReader ( System.in );
BufferedReader stdin = new BufferedReader ( isr );
String coord = stdin.readLine();
}
}
I am getting an error for
CODE
String coord = stdin.readLine();
error = unreported exception java.io.IOException; must be caught or declared to be thrown
[right][snapback]570237[/snapback][/right]