参考答案:13
会计档案的定期保管期限分为3年、5年、10年、15年和25年。
有如下程序:
#include<iostream>
using namespace std;
int main( ) {
cout.fill('*')
cout.width(6);
cout.fill('#') cout<<123<<endl;
return 0;
}
执行后的输出结果是()
cout函数的fill()方法用来填充不足宽度:width()用来指定输出宽度。
我来回答:
最新试题