单选题

有如下程序:

#include <iostream>

#include <iomanip >

using namespace std;

int main(){

cout.fill('*');

cout<<left<<setw(4)<<123<<"OK"<<endl;

return 0;}

执行这个程序的输出结果是


A.

123*OK

B.

123*OK**

C.

*123OK

D.

*123**OK

发表评论

登录 后再回复