2 条题解
-
1
c或 c++ 输入格式化补 0
头文件:<iomanip> 函数:setw(int n) 函数:setfill(char c) cout<<setw(8)<<setfill('0')<<123<<endl; 输出:00000123 C语言 printf("%08d \\n",123); 输出:00000123
参考代码
#include<iostream> #include<iomanip> using namespace std; int n,ge,shi; int main(){ cin>>n; shi = n/10; ge =n %10; cout<<setfill('0')<<setw(2)<<ge*10+shi; return 0; }
- 1
信息
- ID
- 36
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 6
- 标签
- 递交数
- 57
- 已通过
- 20
- 上传者