-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoderem.cpp
75 lines (72 loc) · 1.7 KB
/
coderem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <iostream.h>
#include <string>
#include <fstream>
#include <stdio.h>
using namespace std;
int main()
{
//assuming each \n is there in test file
string fname;
cin>>fname;
string line;
fstream myfile(fname.c_str());
ofstream temp;
temp.open("temp.txt");
int spaceindex=0;
if (myfile.is_open())
{
int flagOpen=0;
while ( getline (myfile,line) )
{
spaceindex=0;
while(line[spaceindex]==' ' || line[spaceindex]=='\t'){
spaceindex++;
}
if(line[spaceindex]=='/' and line[spaceindex+1]=='/'){
cout<<" comment detected--> "<<line<<endl;
}
else if(line[spaceindex+1]=='/' and line[spaceindex+2]=='*')
{
flagOpen=1;
for(int i=spaceindex+3;i<line.length()-1;i++)
{
if(line[i]=='*' and line[i+1]=='/')
{
flagOpen=0;
break;
}
}
}
else if(line[spaceindex+1]=='*' and line[spaceindex+2]=='/')
{
flagOpen=0;
}
else if(flagOpen==0)
{
// a lot of cases are missed.
int ind=0;
for(ind=line.length()-1;ind>=0;ind--)
{
if(line[ind]==';')
{
line=line.substr(0,ind+1);
break;
}
}
temp<<line<<endl;
cout<<line<<endl;
}
}
temp.close();
myfile.close();
if( remove(fname.c_str()) != 0 )
perror( "Error" );
rename("temp.txt",fname.c_str());
}
else{
cout << "Unable to open file";
}
char c;
cin>>c;
return 0;
}