// Convert Int to Char

#include "stdafx.h"
#include <iostream>

using namespace System;
using namespace std;

int main(array<System::String ^> ^args)
{
    for (short i = 0; i < 8; i++ )
    {
       char newChar = i;
       cout << i << " = " << newChar << "\n";
    }

    cin.get();

    return 0;
}

最后的输出数字7不显示任何字符,只显示空白。

最佳答案

ASCII代码7是bell字符,应该使您的PC发出哔声。

07-24 09:54