#include <stdio.h>
#define N 80
int main(int argc, char *argv[]) {
char a[N];
printf("Hello,where are you from?\n");
gets(a);
if(strcmp(a,"China")==0||strcmp(a," the People's Republic of China")==0)
printf("Wow,i am a Chinese,too.\nToday is a birthday of our country.\nLet's wish our motherland to have a happy birthday!");
else printf("Nice to meet you!");
 return 0;
}

相关文章:

  • 2021-08-27
  • 2021-06-06
  • 2021-06-03
  • 2022-02-24
  • 2022-12-23
  • 2021-08-27
  • 2022-01-23
  • 2021-10-03
猜你喜欢
  • 2021-05-27
  • 2021-09-12
  • 2022-02-28
  • 2021-04-17
  • 2021-12-02
  • 2021-06-17
相关资源
相似解决方案