1. ホーム
  2. c++

[解決済み] C++でアスキーテーブルを出力する

2022-03-06 12:14:12

質問

のコードを入力してください。

#include <iostream>
#include <iomanip>
using namespace std;

class Ascii_output {
public:
    void run() {
        print_ascii();
    }
private:
    void print_ascii() {
        int i, j;                                                           // i is         used to print the first element of each row
                                                                        // j is used to print subsequent columns of a given row
    char ch;                                                            // ch stores the character which is to be printed
    cout << left;

    for (i = 32; i < 64; i++) {                                         // 33 rows are printed out (64-32+1)
        ch = i;
        if (ch != '\n')                                                 // replaces any newline printouts with a blank character
            cout << setw(3) << i << " " << setw(6) << ch;
        else
            cout << setw(3) << i << " " << setw(6);

        for (j = 1; j < 7; j++) {                                       // decides the amount of columns to be printed out, "j < 7" dictates this
            ch += 32*j;                                                 // offsets the column by a multiple of 32
            if (ch != '\n')                                             // replaces any newline printouts with a blank character
                cout << setw(3) << i+(32*j) << " " << setw(6) << ch;
            else
                cout << setw(3) << i+(32*j) << " " << setw(6);
        }

        cout << endl;
    }
    }
};

を出力します。

なぜ、正しくインデントされた出力が得られず、96〜255の値で奇妙な文字が表示されるのでしょうか?

解決方法は?

この行は正しいことを行っていません。

ch += 32*j;

32で数えたいというのは、どちらかというと

ch += 32;

または

ch = i + 32*j;

出力時に数値と文字値を一致させることを強くお勧めします。 そのため、以下のように変更します。

cout << setw(3) << i+(32*j) << " " << setw(6) << ch;

になります。

cout << setw(3) << int(ch) << " " << setw(6) << ch;