【C语言程序】今天是祖国母亲的生日,特意编写一…

2018-06-18 03:59:03来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

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

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:记录一个自己写的很有意思的算法

下一篇:Sublime Text 3 实现C语言代码的编译和运行