
こんにちは。現在、英文、もしくは英単語、英字を国際符号(モールス信号)に訳すプログラムを書いているのですが、もしユーザーが二つの英単語を入力し、その単語がスペースで離れている場合(例として、SOS SOSもしくはsos sos)、翻訳された単語のモールス信号の間にスペースを三つ、文字の間に一つづつスペースを入れたいのですが(sos sosであれば、... --- ... ... --- ...)コツがつかめなくて困っています(文字の間に一つスペースを入れる事に成功はしたのですが...)
C++言語で経験者の方、いらっしゃいましたら是非アドバイスを御願い致します。
これが自分が今まで書き上げたコードなのですが、
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
string engtomol (string, string[]);
int main ()
{
char alpha[26] = {'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'};
string morse[81] = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."};
string text, morsecode;
char choice;
char repeat='y';
cout << "Select 1 to decode Morse code to English text. Select 2 to decode English text to Morse code" << endl;
cin >> choice;
if (choice=='1')
{
cout << "NOTE. DO NOT INPUT A NON ENGLISH CHARACTER. THIS TRANSLATOR EXCLUSIVELY ONLY TRANSLATES ENGLISH ALPHABETS (CAPITALIZED AND NON CAPITALIZED) ONLY.\n";
cout << "Enter a text to translate, each word seperated by spaces if you want to translate more than one word:";
cin.get();
getline(cin,text);
cout << "TEXT: " << text << endl;
cout << "MORSE CODE: " << engtomol(text, morse) << endl;
}
else if (choice=='2')
{
cout << "lol";
}
return 0;
}
string engtomol (string text, string morse[])
{
int textlength = text.length();
string morsevalue;
string spacesbtwletters= " ";
string spacesbtwwords = " ";
for (int k=0; k<textlength; k++)
{
if (text[k]!= ' ') //if the word(s) did not encounter a space
{ text[k]=toupper(text[k]); //upper case letters and lower case letters are the same hence have the same appropriate morse code.
morsevalue=spacesbtwletters+=morse[text[k]-'A']+" ";//A is the first value of the array. by subtracting its finding the appropriate morse code for each letters
}
if (text[k]==' ')
{
morsevalue+spacesbtwwords;
}
}
return morsevalue;
}
プログラムをコンパイルすると、(また例としてsos sosを入力したとします)。--- ... --- --- ... ---と、単語の間にスペースが一つしか表れません。どの様に変えたら、希望通りの結果が出ますか?
よろしく御願い致します。
No.3ベストアンサー
- 回答日時:
ああ失礼、修正後の方のコードの変更点を演算子しか見てませんでした。
確かに修正後の方は "CQ DE SHIN" を正しく変換してくれますね。
じゃあ、" SOS" や "SOS "はどう変換されるべきとお考えで、それはその通りになりますか?
また、spacesbtwletters はその名の通り「文字の間の空白」という役目を果たしていますか?
No.2
- 回答日時:
> 何とか、希望通りにできましたが
へぁ、じゃあ "CQ DE SHIN" って入力したらどうなります?
修正のヒント : engtomol() の中で変化しないはずの変数の宣言に const を追加してみましょう。
No.1
- 回答日時:
んーと、自分なら std::map か文字と符号のペアクラスの配列を使って空白を特別扱いしないけど、とりあえず
if (text[k]==' ')
{
morsevalue+spacesbtwwords;
}
では morsevalue は何も変わらない。
まあ、これを直しても本当にこのコードの通りなら他の問題があるんだけど、それは上を直してのお楽しみという事で。
この回答への補足
hitomuraさん、
ご回答ありがとうございます。
何とか、希望通りにできましたが、今度はモールスを逆に英文(または英字、英単語)に変換したいのですが、自分の書いたコードだと"AAA"しか出てきません。どの様にコードを書き換えたらよいでしょうか?
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
string engtomol (string, string[]);
string moltoeng (string, char[]);
int main ()
{
char alpha[26] = {'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'};
string morse[81] = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--.."};
string text, morsecode;
char choice;
char repeat='y';
while (repeat=='y')
{
cout << "Select 1 to decode Morse code to English text.\nSelect 2 to decode English text to Morse code" << endl;
cin >> choice;
if (choice=='1')
{
cout << "NOTE. DO NOT INPUT A NON ENGLISH CHARACTER. THIS TRANSLATOR EXCLUSIVELY TRANSLATES ENGLISH TEXTS (CAPITALIZED AND NON CAPITALIZED).\n";
cout << "Enter a text to translate, each word seperated by a space if you want to translate more than one word: ";
cin.get();
getline(cin,text);
cout << "TEXT: " << text << endl;
cout << "MORSE CODE: " << engtomol(text, morse) << endl;
}
else if (choice=='2')
{
cout << "Enter a morsecode to translate, each letter code seperated by a space. If you want to translate more than one word, have 3 spaces between each word (for example, ... --- ... ... --- ...): ";
cin.get();
getline(cin,morsecode);
cout << "MORSECODE: " << morsecode << endl;
cout << "TEXT: " << moltoeng (morsecode, alpha) << endl;
}
cout << "Would you like to continue? Press y to repeat. Press any other key to exit. ";
cin >> repeat;
}
return 0;
}
string engtomol (string text, string morse[])
{
int textlength = text.length();
string morsevalue;
string spacesbtwletters= " ";
string spacesbtwwords = " ";//2 spaces because im going to add it with spacesbtwletters so that it will = 3
for (int k=0; k<textlength; k++)
{
if (text[k]!= ' ') //if the word(s) did not encounter a space
{ text[k]=toupper(text[k]); //upper case letters and lower case letters are the same hence have the same appropriate morse code.
morsevalue=spacesbtwletters+=morse[text[k]-'A']+" ";//A is the first value of the array. by subtracting its finding the appropriate morse code for each letters
}
if (text[k]==' ')
{
spacesbtwletters+=spacesbtwwords;//adds 3 spaces when there is a space between words
}
}
return morsevalue;
}
string moltoeng (string morsecode, char alpha[])
{
int morselength = morsecode.length();
string tran;
string spacesbtwletters= " ";
string spacesbtwwords = " ";
for (int k=0; morsecode[k]; k++)
{
if (morsecode[k]!= ' ') //if the word(s) did not encounter a space
{
tran=spacesbtwletters+=alpha[morsecode[k]-morsecode[1]];//A is the first value of the array. by subtracting its finding the appropriate morse code for each letters
}
}
return tran;
}
現在あるコードです。逆の場合はモールス信号を入力した場合、文字同士の間には1スペースを、単語同士の間には3スペース、入力し、変換した英文は、英単語同士の間だけに1スペース開ける様に出力したいのですが(... --- ... ... --- ...を SOS(もしくはsos) SOS等)
長文で申し訳ありませんが、どうかアドバイスをよろしく御願い致します。
お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!
似たような質問が見つかりました
- C言語・C++・C# C++初心者です stirng 2 2022/09/20 20:43
- C言語・C++・C# C++プログラミングコードにポリモーフィズムを取り入れ方を教えてください。 2 2023/06/09 11:17
- JavaScript GoogleChart 階層ごとのブロックの長さを個別に設定したい 1 2022/07/06 14:27
- Excel(エクセル) マクロでテキストファイルを読み込んだ際の最終セルにデータと改行が含まれる問題の改善方法 2 2022/03/25 16:50
- C言語・C++・C# C++のcinの動作 5 2023/02/26 00:13
- JavaScript jQueryでのドラッグアンドドロップについて 1 2022/07/07 21:04
- VPN 何これ 1 2022/04/19 01:32
- C言語・C++・C# [至急]Project Euler:#17Number letter countsコード入力出力解説 2 2022/09/24 02:46
- JavaScript HTMLでJavaScriptを使ってパスワードの強化判定のプログラムを作成しています。 一通り作っ 2 2022/10/19 01:41
- 英語 英語の質問です。 When I taught in high school, I wanted to 4 2023/08/19 16:10
関連するカテゴリからQ&Aを探す
おすすめ情報
デイリーランキングこのカテゴリの人気デイリーQ&Aランキング
-
CASL2 命令の2語と3語の違い
-
VB6.0 sp5]テキストボックスと...
-
アクセスのフィールドに値をペ...
-
C++言語、国際符号翻訳プログラ...
-
テキストボックスかラベル上の...
-
vba 日本語以外を抽出について
-
【VBS】クリップボード操作につ...
-
htmlの修正方法を教えていただ...
-
図の様な枠線の引き方を教えて...
-
sublimit textっていうエディタ...
-
ボールの動きがスムーズに動い...
-
LOTUS-123のユーザーフォームに...
-
VBScript、ClipboardDataオブジ...
-
他のフォームから別のフォーム...
-
ユーザーフォームへのデータ入...
-
VBA public変数はどのようなこ...
-
String型の値にスラッシュをつ...
-
演奏記号の・・・・
-
【HTML、VBScript】HTAアプリケ...
-
VBAでcallで呼び出したsubを終...
マンスリーランキングこのカテゴリの人気マンスリーQ&Aランキング
-
テキストボックスかラベル上の...
-
ExcelのVBAで文章にある複数の...
-
vba 日本語以外を抽出について
-
Dreamweaverにて金額にカンマと...
-
XMLファイルのattribute値がう...
-
【VBS】クリップボード操作につ...
-
文字をアクティブにする方法
-
VBAの文字列で「"」を識別したい。
-
MATLABでのデータ処理に関して
-
円頓章を現代語訳して下さい。
-
C++言語、国際符号翻訳プログラ...
-
アクセスのフィールドに値をペ...
-
Googleシート「A1」でなくて「A...
-
助けてください!
-
図の様な枠線の引き方を教えて...
-
[VB2010]関数・代入が順序正し...
-
TextAreaのinsert
-
フォーム、サブフォーム間のデ...
-
TextBox内の特定文字の数を数え...
-
サクラのサーバーについて教え...
おすすめ情報