c++初学者求助!!!
麻烦各位帮我分析一下这个程序是怎样运行,本人初学者,希望各位指点#include <iostream>
using namespace std;
int main()
{
int width = 4;
char str;
cout << "请输入一段文本: \n";
cin.width(5);
while( cin >> str )
{
cout.width(width++);
cout << str << endl;
cin.width(5);
}
return 0;
}
页:
[1]