作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我希望一个数字显示为一个正号和前面的三个 0,但我目前得到的是 000+1,而我想要的是 +0001
#include <iostream>
#include <iomanip>
using namespace std;
int main(void)
{
int number = 1;
cout << showpos;
cout << setfill('0') << setw(5) << number << endl;
}
最佳答案
您还需要设置 std::internal
旗帜。这样您将获得预期的 +0001
- test at ideone .
关于c++ - 如何输出带有正号和前面零的整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55494228/
我是一名优秀的程序员,十分优秀!