Title Description
I believe everyone must know the famous ASCII code, this time to your task is to enter a number (representing the ASCII code), the output of the corresponding character information.
Input format
The first behavior is an integer T (1<=t<=1000).
Next consists of a T-positive integer, separated by a whitespace character. (whitespace characters include spaces, line breaks, tab characters)
These integers are not less than 32.
Output
Outputs the corresponding character information in a row. (Be careful not to output any extra characters)
Sample input
13
72 101 108 108 111 44
32 119 111 114 108 100 33
Sample output
Hello, world!.
Import java.util.*;p ublic class main{public static void Main (string[] args) { Scanner cin = new Scanner (system.in);
while (Cin.hasnext ()) { int n=cin.nextint (); String s= ""; for (int i=0;i<n;i++) s+= (char) cin.nextint (); System.out.println (s);}} }
1008:ASCII code "Java algorithm"