-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathValidation.cpp
More file actions
54 lines (36 loc) · 1.14 KB
/
Validation.cpp
File metadata and controls
54 lines (36 loc) · 1.14 KB
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
//main.cpp - Email Validation Program main entry point
//Written by Gabe Harms
#include "Validation.h"
#include <iostream>
#include <istream>
#include <fstream>
#include <string>
using namespace std;
//Validates email and retruns true if the email is valdi, returns zero otherwise
int main() {
MyClass main;
// 1. Open input and output files
ifstream input("Email.txt");
ofstream output("Result.txt");
//make sure the file exists
cout << "Making Sure Both Files Exist...\n\n";
if(input.fail())
cout << "Error: Could Not Find The Input File\n";
if(output.fail())
cout << "Error Could Not Find the Output File\n";
// 2. While not at the end of the input file
string email;
while ( getline(input, email) )
{
// 4. Validate the email address
cout <<"Validating the following email address: " << email <<"...\n";
bool IsValid = main.IsValid(email);
// 5. If the email address is valid write 1 to the output file else write zero
cout << email << " is a " << IsValid <<", writing to Result.txt...\n\n";
output << IsValid << endl;
// 6. Repeat
}
cout << "Completed Email Validation\n";
system("pause");
return 0;
}