初识ACM——活泼的精灵

程序的魅力也体现在解决问题的方式往往有很多
下面这个手机短号已经做了好多遍了……
估计以后整理时还要再写一遍……

#include<stdio.h>
int main()
{
    int n;
    int i;
    char m[12];
    scanf("%d",&n);
    while(n--)
    {
        scanf("%s",m);
        printf("6%s\n",m+6);

    }
    return 0;
}

这便是计算机的精彩~不是吗?

原文地址:https://www.cnblogs.com/BoilTask/p/12570201.html