TA的每日心情 | 擦汗 9 小时前 |
---|
签到天数: 526 天 连续签到: 3 天 [LV.9]测试副司令
|
- #include<stdio.h>
- #include<string.h>
- #include<windows.h>
- int main()
- {
- int ch;
- while(1)
- {
-
- printf("****** HELLO,朋友 **************\n");
- printf("********* 请输入:2018 *************\n");
- printf("您的输入为:");
- //char ch = getchar();
- scanf("%d",&ch);
- if(ch == 2018)
- {
- printf("\n");
- printf("祝:元旦快乐,新的一年的过自己想过的生活!\n");
- printf(" -NXT\n");
- printf("\n");
-
- }else
- {
- printf("\n");
- printf("******** 您没有正确输入2018 ***********\n");
- printf("\n");
- printf("******** 狡猾的家伙,同样祝你:*********\n");
- printf("\n");
- printf(" 元旦快乐,新的一年的过自己想过的生活!\n");
- printf(" -NXT\n");
-
- }
- printf("*********** 请输入任意键退出 **************\n");
- char ch1 =getchar();
- if(ch1 != NULL)
- {
- break;
- }
- }
- system("pause");
- return 0;
-
- }
复制代码
|
|