#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
using namespace std;

int main()
{

ofstream fs("123.txt",ios::app);

fs<<setw(7)<<"234234"<<setw(3)<<"12"<<endl;

system("pause");
return 0;
}

相关文章:

  • 2021-11-18
  • 2021-08-08
  • 2021-12-05
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-22
  • 2022-02-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
相关资源
相似解决方案