Problem I: 零起点学算法104——Yes,I can!

#include<stdio.h>
int main()
{
    char a[10];
    while(gets(a)!=NULL)
    {
        printf("I am ");
        printf("%s,yes,I can!",a);
    }
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/chenlong991223/p/9977243.html