-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparseAnalize.cpp
More file actions
51 lines (39 loc) · 807 Bytes
/
parseAnalize.cpp
File metadata and controls
51 lines (39 loc) · 807 Bytes
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
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
/*
int main(){
ifstream inputFile;
ofstream outputFile;
inputFile.open("inputFile.txt",ios::in);
outputFile.open("outputFile.txt",ios::out);
string line;
if(inputFile.is_open() && outputFile.is_open()){
while(inputFile.good()){
getline(inputFile,line);
outputFile << line;
}
inputFile.close();
outputFile.close();
}
return 0;
}
int main(){
double
ifstream inputFile;
ofstream outputFile;
inputFile.open("aapl.csv",ios::in);
string line;
if(inputFile.is_open()){
getline(inputfile,line);
while(getline(inputfile,line)){
stringstream lineStream(line);
string cell;
}
}
}
*/
int main(){
char** strArray = new char[7];
}