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
|
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
string toMorse (string, string[]);
int main ()
{
string morse[39] = {"--..--", ".-.-.-", "..--..","-----", ".----", "..---", "...--", "....-", ". ...", "-....", "--...", "---..", "----.", ".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."};
string text;
cout << "Please enter a character, word or phrase to translate from english to morse code \n";
cin.get();
getline(cin,text);
cout << "Your text \n" << text << endl;
cout << "Here it is in morse code \n " << toMorse(text, morse) << endl;
return 0;
}
string toMorse (string text, string morse[])
{
int textlength = text.length();
string morseCodeValue;
string sL= " ";
string sW = " ";
for (int index = 0; index < textlength; index++)
{
if (text[index]!= ' ')
{ text[index]=toupper(text[index]);
morseCodeValue=sL+=morse[text[index]-'A']+" ";
}
if (text[index]==' ')
{
sL+=sW;
}
}
return morseCodeValue;
}
|