//c++中int转为string #include <iostream> #include <string> using namespace std; int main() { int i,j,k; string s(""); char *temp = new char; sprintf(temp,"%d",1234); s += string(temp); cout<<s<<endl; cout<<s[0]<<" "<<s[1]<<" "<<s[2]<<endl; while(1); return 0; }
#include <iostream> #include <string> #include <sstream> using namespace std; int main() { int i,j,k; stringstream s;//包含在sstream头文件里 s<<1234; string ch = s.str(); cout<<ch<<endl; while(1); return 0; } /* 输入输出那些事: cout.width(12); //设置输出宽度为12 cout<<f[i]; 要使 cin.get() 大法还有用,可以配对使用 cin.clear() 与 cin.sync()。 两个函数:cin.clear() 用于清除流的失败状态(如果有);而 cin.sync() 用于清空输入流。 */
#include <iostream>
using namespace std;
void main()
{ double values[]={1.23,35.36,653.7,4358.24};
for(int i=0; i<4; i++)
{ cout.width(10);
cout.fill('*');
cout<<values[i]<<'\n';
}
}
输出结果:
******1.23
*****35.36
*****653.7
***4358.24
#include <iostream>
#include <iomanip>
using namespace std;
void main()
{ double values[]={1.23,35.36,653.7,4358.24};
char *names[]={"Zoot","Jimmy","Al","Stan"};
for(int i=0;i<4;i++)
cout<<setw(6)<<names[i]
<<setw(10)<<values[i]
<<endl;
}
输出结果:
Zoot 1.23
Jimmy 35.36
Al 653.7
Stan 4358.24