HDU 3361 ASCII

Description

Algorithm

Code

#include <iostream>
using namespace std;
int main()
{
  int t;
  while (cin >> t)
  {
    for (int i = 0; i < t; i++)
    {
      int x;
      cin >> x;
      cout << (char)x;
    }
  }
}

你可能感兴趣的:(HDU 3361 ASCII)