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
|
#include <iostream>
#include <string>
using namespace std;
int main()
{
string morse[39]={".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-",".-..", "--",
"-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..",
".----", "..---", "...--", "...._", ".....", "-....", "--...", "---..", "----.", "-----",
".-.-.-", "--.--", "..--.."};
string plaintext[39]={"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R",
"S", "T", "U", "V", "W", "X", "Y", "Z", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0",
"Stop", ",", "?"};
string morsecode;
int textlength;
int count=0, i=0;
cout<<"1-3 Enter a string to convert to Morse Code.";
cout<<"Convert Morse Code to Text";
cout<<"Enter Morse Code(sperate by space): ";
getline(cin, morsecode);
for(int i=0; i<morsecode.size(); i++)
{
int find_string=0;
while (find_string < 39)
{
if (morsecode[i]==morse[find_string][0])
{
count=1;
cout << plaintext[find_string] <<" ";
break;
}
find_string+=1;
}
}
if (count==0)
cout << endl << "No conversion was done due to an error" << "\a" << endl;
return 0;
}
|