import java.io.*;
public class prelab7 {
public static void readstring(String a){
String s = "EECS 132";
StringReader s1 = new StringReader(s);
for (int n = 0; n < s.length(); n = n + 1){
char c = (char)s1. read();
System.out.print(" " + c);
}
}
}
1 error found: File: /Users/clara/Desktop/EECS132/prelab7.java [line: 8] Error: /Users/clara/Desktop/EECS132/prelab7.java:8: unreported exception java.io.IOException; must be caught or declared to be thrown