System.out.printf("three%=one==>%d",three);
%= 有歧义,需要转义, %% 代表 % 。
System.out.printf("three %%= one ==> %d", three);