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;
}

 

posted @ 2018-11-18 11:00  MichaelCecil  阅读(1784)  评论(0编辑  收藏  举报