c++将文件保存至txt文件的方法

MATLAB

1、dlmwrite('datainput.txt',x,'d');

注:datainput.txt为保存的文件名称,x为保存的数据,d为数据间隔符。

2、f=fopen('data.txt','wt');

     fprintf(f,'%d\n',x);

      fclose(f);

注:'wt'表示该文件的读写属性。

c++

VS中保存文件的代码示例:

#include

using namespace std;

void main()

{

    int i,s[10];

    for (i=0;i<10;i++)

        s[i]=i*2;

    ofstream outfile;//创建文件

    outfile.open("data.txt");

    for (i=0;i<10;i++)

        outfile<

    outfile.close();

}

你可能感兴趣的:(c++将文件保存至txt文件的方法)