C++用cout输出时,用怎样的格式控制输出一个带符号的整数。。。 比如说整数5,输出结果为+5
答案:3 悬赏:0 手机版
解决时间 2021-02-18 00:18
- 提问者网友:未信
- 2021-02-17 08:54
C++用cout输出时,用怎样的格式控制输出一个带符号的整数。。。 比如说整数5,输出结果为+5
最佳答案
- 五星知识达人网友:毛毛
- 2021-02-17 09:06
#include
#include
using namespace std;
int main() {
cout<
system("pause");
return 0;
}
#include
using namespace std;
int main() {
cout<
return 0;
}
全部回答
- 1楼网友:行雁书
- 2021-02-17 11:02
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
cout<<setiosflags(ios::showpos)<<8<<endl;
system("pause");
return 0;
}
- 2楼网友:煞尾
- 2021-02-17 10:18
int p=5;
cout << setiosflags(ios::showpos)<< p<
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯