请问:关于c++左端对齐...
登录 | 论坛导航 -> 华新鲜事 -> 求学狮城 | 本帖共有 7 楼,当前显示第 6 楼 : 从楼主开始阅读 : 本帖树形列表 : 返回上一页
作者:魅力十足 (等级:2 - 初出茅庐,发帖:15) 发表:2003-03-13 00:31:03  6楼 
再问:关于c++的问题#include .... string s("hello"); ... 请问string 如何set width?(setw是不行的)
You can try this =>
A very intuitive way to do it:

#include<iostream.h>
#include<string>
using std::string;
main(void)
{
string text( "Hello! I want it that way" );
int number=0;

cout << "Please enter the number of characters you want to display"
<< endl;
cout << flush;
cin >> number;

for(int i=0;i<number;i++)
cout<<text[i];
cout << endl;

return 0;
}// end of the source code.


Right now, I don't know any build-in functions to do that. :)

Any way, Good good study, day day up!!!

Cheers!
Put your OWN COOL signature here!
欢迎来到华新中文网,踊跃发帖是支持我们的最好方法!原文 / 传统版 / WAP版只看此人从这里展开收起列表

本帖共有 7 楼,当前显示第 6 楼,本文还有 N-1 层楼,要不你试试看:点击此处阅读更多 >>



请登录后回复:帐号   密码