从一个txt文件中读取数据写入到另一个txt文件。
程序员文章站
2022-03-10 15:23:44
读取时会自动将空格忽略,只读取数字。#include using namespace std;int main(int argc, char ** argv){ int num; long double time; char kg; int a=1, b=2; struct timeval t_start, t_end; long double t; ifstream fin("/home/flk/fea_nu...
读取时会自动将空格忽略,只读取数字。
#include <fstream>
using namespace std;
int main(int argc, char ** argv)
{
int num;
long double time;
char kg;
int a=1, b=2;
struct timeval t_start, t_end;
long double t;
ifstream fin("/home/flk/fea_num6.txt",ios::app);//
while (1)
{
sleep(1);
cout.setf(ios::fixed,ios::floatfield);//十进制计数法,不是科学计数法
cout.precision(2);//保留2位小数
ofstream fout_num("/home/flk/fn_ext.txt",ios::app);
// ofstream fout_kg("/home/flk/kg_ext.txt",ios::app);
ofstream fout_time("/home/flk/time_ext.txt",ios::app);
if(fin.is_open()&&fout_num.is_open()&&fout_time.is_open())
{
cout<<"open scueess"<<endl;
} else{
cout<<"open faile"<<endl;
}
fin>>num;
cout<<"num: "<<num<<endl;
fout_num<<num<<" ";
fin>>time;
cout<<"time: "<<time<<endl;
fout_time<<time<<" ";
if(fin.eof())
{
cout<<"finish"<<endl;
fin.close();
fout_time.close();
// fout_kg.close();
fout_num.close();
return 1;
}
}
return 0;
}
本文地址:https://blog.csdn.net/m0_46345373/article/details/110718444
推荐阅读
-
Python将txt文件输入到MySQL数据库中
-
php中将一段数据存到一个txt文件中并显示其内容
-
读取xml文件中的信息到txt文本中
-
Python3 中把txt数据文件读入到矩阵中的方法
-
键盘录入一个文件夹路径,统计该文件夹(包含子文件夹)中每种类型的文件及个数,注意:用文件类型(后缀名,不包含.(点),如:"java","txt")作为key, 用个数作为value,放入到map集
-
键盘录入一个文件夹路径,统计该文件夹(包含子文件夹)中每种类型的文件及个数,注意:用文件类型(后缀名,不包含.(点),如:"java","txt")作为key, 用个数作为value,放入到map集
-
将任意两个指定的文件完成拷贝功能:比如:a.out a.txt b.txt 把a.txt的内容拷贝到b.txt 中
-
Python读取txt文件应用---用python实现读取一个txt文档,并根据相应判断条件在txt文件中,每一行内写入指定数据。
-
java存储数据到本地txt文件中
-
Python实现读取txt文件中的数据并绘制出图形操作示例