首页 > 其他 > 详细

文档 所有空格变为Tab

时间:2019-07-27 16:06:58      阅读:97      评论:0      收藏:0      [点我收藏+]

 

遗憾的是记事本、word没有这个功能。。。

 

可以生成exe

 1 #include <cstdio>
 2 #include <cstdlib>
 3 #include <cmath>
 4 #include <cstring>
 5 #include <string>
 6 #include <algorithm>
 7 #include <iostream>
 8 using namespace std;
 9 #define ll long long
10 
11 const double eps=1e-8;
12 const ll inf=1e9;
13 const ll mod=1e9+7;
14 const int maxn=1e5+10;
15 
16 
17 
18 int main()
19 {
20     char c;
21     FILE *in=fopen("in.txt","r");
22     FILE *out=fopen("out.txt","w");
23     while (~(c=fgetc(in)))
24     {
25         if (c== )
26             fprintf(out,"\t");
27         else
28             fprintf(out,"%c",c);
29     }
30     fclose(in);
31     fclose(out);
32     return 0;
33 }

 

文档 所有空格变为Tab

原文:https://www.cnblogs.com/cmyg/p/11255355.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!