1408182100-hd-ASCII.cpp

来源:互联网 发布:长岛顶级快网络 编辑:程序博客网 时间:2024/05/12 06:11

ASCII

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)

Total Submission(s): 3307 Accepted Submission(s): 1480

 
Problem Description
Since all we know the ASCII code, your job is simple: input numbers and output corresponding messages.
 
Input
The first line contains one integer T (1<=T<=1000).
The input will contain T positive integers separated by whitespaces (spaces, newlines, TABs).
The integers will be no less than 32.
 
Output
Output the corresponding message in just one line.
Warning: no extra characters are allowed.
 
Sample Input
1372 101 108 108 111 4432 119 111 114 108 100 33
 
Sample Output
Hello, world!
 

题目大意

      输入数字,输出其ascll对应的字符。

错误原因

      题目是让求一组数据的结果,而且在输出之后不用加\n。一定要理解清题意。

代码

<span style="font-size:18px;">#include<stdio.h>int s[1100];int main(){    int t;    int i;    scanf("%d",&t);    for(i=0;i<t;i++)        scanf("%d",&s[i]);    for(i=0;i<t;i++)        printf("%c",s[i]);    return 0;}</span>


 

0 0