import java.io.*; public class PIHatesNines { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new FileReader(new File("pi.txt"))); String s = br.readLine(); String[] split=s.split("9"); int max=0; int pos=0; for (int i = 0; i < ...