请写出以下程序运行结果: public class Main { static int count = 0; public static void main(String[] args) { for ( ;; ) { try { if ( count++ == 0 ) throw new Exception(); System.out.print("A"); } catch (Exception e) { System.out.print("B"); } finally { System.out.print("C"); if ( count == 2 ) break; }}}}