返回列表 發帖
  1. public class Ch71
  2. {
  3.   public static void main(String args[])
  4.   {
  5.       int a=4,b=34,c=234,d=1234;
  6.       System.out.printf("%04d\n",a);
  7.       System.out.printf("%04d\n",b);
  8.       System.out.printf("%04d\n",c);
  9.       System.out.printf("%04d\n",d);
  10.   }
  11. }
複製代碼

TOP

返回列表