0

列挙型のテキスト値を出力したいのですが、5 を入力すると F1 が出力されます。63 を入力すると、H8 を出力する必要があります。以下のコードでは、cout << "You choose: " << board_square(chosen_piece) << endl を試しましたが、値が 2 回出力されます。

enum board_square {
    A1 = 1, B1, C1, D1, E1, F1, G1, H1,
    A2, B2, C2, D2, E2, F2, G2, H2,
    A3, B3, C3, D3, E3, F3, G3, H3,
    A4, B4, C4, D4, E4, F4, G4, H4,
    A5, B5, C5, D5, E5, F5, G5, H5,
    A6, B6, C6, D6, E6, F6, G6, H6,
    A7, B7, C7, D7, E7, F7, G7, H7,
    A8, B8, C8, D8, E8, F8, G8, H8,
};

int choose_piece()
{
    using namespace std;
    cout << "X Location?" << endl << ">";
    int column;
    cin >> column;
    cout << "Y Location?" << endl << ">";
    int line;
    cin >> line;
    //This formula calculates which square is placed on the dimensions you entered
    int chosen_piece = (column + (line - 1) * 8);
    return chosen_piece;
}

int main()
{
    using namespace std;
    cout << "Enter dimensions for the piece you want to move" << endl;
    int chosen_piece = choose_piece();
    cout << chosen_piece << endl;
    //How can I get it to print the enum for it here?
    cout << "You chose: " << board_square(chosen_piece) << endl; //This doesn't work either :(
    return 0;
}
4

3 に答える 3

1

実行時に列挙子名を使用することはできません。ソース内の数字に名前を付ける便利な方法です。数値をランタイム文字列に変換するには、次のようなランタイム コードが必要です。

std::string label(int row, int col) {
    return {char('A'+row), char('1'+col)};
}
于 2013-04-23T18:29:40.773 に答える