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

 

相关文章:

  • 2021-12-29
  • 2022-12-23
  • 2021-11-06
  • 2021-06-09
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-26
  • 2022-12-23
相关资源
相似解决方案