1. 程式人生 > >關於setw(8)和向文字中寫入內容的用法及說明

關於setw(8)和向文字中寫入內容的用法及說明

#include<iostream>
#include<fstream>
#include<string>
#include<iomanip>
using namespace std;
int main()
{
ofstream output;
output.open("D:/使用者目錄/Desktop/123.txt");
output<<"姓名1"<< " "<< "sad"<<164<<endl;
output<<"十幾年asdasd"<<"  "<<"ad"<<endl;
output<<setw(8)<<"少1a"<<endl;
output.close();
cout<<"寫入成功"<<endl;


system("pause");
return 0;