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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
//Globally declare variables.
string sentence;
//Functions.
int getMenuOption();
string translateLine (string);
string translateWord (string);
string getNextWord(string, int);
bool isVowel (char);
bool isPunctuation (char);
void splitWord (string, int, string &, string &);
int main()
{
int option;
ifstream infile;
ofstream outfile;
//Get user menu option.
option = getMenuOption();
//Determine if will read from a file or from user input.
if (option == 1)
{
//Get sentence.
infile.open("Program5_Input.txt");
getline(infile, sentence);
infile.close();
//Translate file.
cout << "Your file is processing...\n";
sentence = translateLine(sentence);
//Place translation into outfile.
outfile.open("Program5_Output.txt");
outfile << sentence;
cout << "Your file has been processed.\n" << endl;
outfile.close();
}
else
{
//Get sentence.
cout << "Please enter your sentence:\n";
getline(cin, sentence);
cout << endl;
//Translate sentence(s).
string translateLine(string sentence);
//Display resuts.
cout << sentence << endl << endl;
}
system("pause");
return 0;
}
//Display Menu.
int getMenuOption()
{
int option;
//Display options and validate.
do
{
cout << " Menu:\n";
cout << "================================\n";
cout << "[1] to process a file\n";
cout << "[2] to process a single sentence\n";
cout << "================================\n";
cout << "Your choice: ";
cin >> option;
} while (!(option == 1 || option == 2));
return option;
}
//Translate sentence.
string translateLine(string sentence)
{
int i = 0, length = 0;
string pigLatin, word;
while (i <= sentence.length())
{
//Get next word.
word = getNextWord(sentence, i);
//Find out how many characters are in i and increment i.
length = word.length();
i = i + length + 1;
//Translate word and add it to new sentence.
pigLatin += translateWord(word) + ' ';
}
return pigLatin;
}
//Get the next word.
string getNextWord (string sentence, int i)
{
char letter = 'a';
string word;
//Find end of word.
while (sentence[i] != ' ')
{
letter = sentence[i];
word += letter;
i++;
}
return word;
}
//Translate word.
string translateWord(string word)
{
string holdPunct, front, end;
char letter;
int length, j = 0, k = 1;
bool ansVowel, ansPunct;
//Get word length.
length = word.length();
//Get first letter and check to see if it is a vowel.
while (j == 0)
{
letter = word[j];
ansVowel = isVowel(letter);
}
//Get check for punctuation.
while (j <= length)
{
letter = word[j];
ansPunct = isPunctuation(letter);
if (ansPunct == true)
holdPunct += letter;
j++;
}
//If vowel, finish translating word; else find first vowel.
if (ansVowel == true)
{
word += "way";
word += holdPunct;
}
else
{
ansVowel = false;
if (k == 'u')
{
letter = word[k];
void splitWord(string word, int k, string & end, string & front);
}
else
{
while (ansVowel == false)
{
letter = word[k];
ansVowel = isVowel(letter);
k++;
}
void splitWord(string word, int k, string & end, string & front);
}
word = front + end + "ay";
word += holdPunct;
}
return word;
}
//Check for vowel.
bool isVowel(char letter)
{
letter = tolower(letter);
if (letter == 'a' || letter == 'e' || letter == 'i' || letter == 'o' || letter == 'u')
return true;
else
return false;
}
//Check for punctuation.
bool isPunctuation (char letter)
{
if (letter == '.' || letter == '?' || letter == '!' || letter == ',')
return true;
else
return false;
}
//Split word to add consonants to the end.
void splitWord(string word, int k, string & end, string & front)
{
int length = 0, i;
length = word.length();
for (i = 0; i <= k; i++)
end += word[i];
while (i <= length)
front = word[i];
}
|