printf ("%nd",a);setw(n) cout<<setw(n)<<a; (注意前两种在左端补空格) 以下操作补0 3. printf("%0nd",a); 4. cout<<setw(n)<<setfill(“0”)<<a;