蓝桥杯之HelloWorld

AC代码:

#include <iostream>
#include <cstdio>
using namespace std;
int main(void)
{
    freopen("in.txt","r",stdin);
    char a;
    while(scanf("%d",&a)!=EOF)
    {
        printf("%c",a);
    }
    printf("\n");
    
    fclose(stdin);
    return 0;    
} 

 

posted @ 2019-02-26 20:52  pha创噬  阅读(220)  评论(0编辑  收藏  举报