This is the first problem for test. Since all we know the ASCII code, your job is simple: Input numb

来源:互联网 发布:js中获取项目本地路径 编辑:程序博客网 时间:2024/05/22 11:38
#include<stdio.h>
main()
{
int a[300];
while(scanf("%d",a)==1)
for(int i=0;a[i]!='\0';i++)
printf("%c",a[i]);
return 0;
}
阅读全文
0 0