明日テストがあります。テストの「ガイド」として、以下の質問があります。解決策を書き留めましたが、質問の内容を実行しているかどうかわかりません。助けてくれてありがとう!
次の形式でユーザーから名前を入力するインタラクティブなC++プログラムを作成します。
last, first middle
次に、プログラムは次の形式で名前を出力する必要があります。
first middle last
プログラムは、文字列操作を使用して、姓の末尾からコンマを削除する必要があります。
これが私の解決策です:
#include <iostream>
#include <string>
using namespace std;
const string FIRST = "Firstname";
const string LAST = "Middlename";
const string MIDDLE = "Lastname";
int main()
{
string firstLast;
string lastFirst;
firstLast = LAST + ", " + FIRST + " " + MIDDLE;
cout << "Name in first-last format is " << firstLast << endl;
lastFirst = FIRST + " " + MIDDLE + " " + LAST;
cout << " Name is last-First format is " << lastFirst << endl;
system("PAUSE");
return 0;
}
このソリューションは、質問が求めていることを完了しますか?私のクラスで問題を抱えている人がいましたが、この解決策は簡単すぎるようでしたか?すべての助けをありがとう。