1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#include <iostream>
using namespace std;
string abc[] = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "K", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};
string morse[] = {".", "_"};
// string morseCalc[] =
int main()
{
for(int i = 0; i <= 25; i++){
cout << abc[i] << std:endl;
//cout << morseCalc[i] << std::endl;
// cout << " Got a letter " << std::endl;
}
}
|