题解 | #单组_补充前导零#
单组_补充前导零
https://www.nowcoder.com/practice/c5b1fb6a4b1644e590b49a4cbca7930e
#include <iostream> #include <iomanip> using namespace std; int main() { long long int a; while (cin >> a) { // 注意 while 处理多个 case // printf("%09lld",a); cout<<setw(9)<<setfill('0')<<a; } } // 64 位输出请用 printf("%lld")