blob: 99441420ba44852505284c12fd428732a2899b1c (
plain) (
blame)
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
|
//lab3
#include <iostream>
#include <fstream>
#include <iomanip>
using namespace std;
using std::cin;
using std::cout;
using std::endl;
using std::setw;
using std::ios;
using std::ifstream;
using std::ofstream;
int main()
{//the first 'array' is the descripption of what needs to be done in total 6 equations/things to do
//next tsxt is 6 cols by x rows
ifstream inFile;
ofstream outFile("infile.txt");
inFile.open("LabResults.txt");
}
|