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