A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char * argv[])
{
        int computer = 0,play = 0,jihui=10;
   int now = 1,shengyu,flag = 1;
   shengyu = jihui - now;
   srand(time(NULL));
   computer = rand()%1000;
       
   while(flag){
          if(now <= jihui){
                 printf("请输入一个数字!\n");
            scanf("%d", &play);
            
                        if(computer > play){
                            printf("猜小了,第%d次猜,您还有%d次机会,请重新输入\n",now,shengyu);
              }
             else if(computer < play){
                  printf("猜大了,第%d次猜,您还有%d次机会,请重新输入\n",now,shengyu);
              }      
              else {
             printf("恭喜你,猜对了");
                                   flag=0;
            }
      now=now+1;
           shengyu=jihui-now;
         }else{
                printf("太笨了,您不适合玩游戏\n");
                   flag = 0;
         }
         
   }
        getchar();
        return 0;
}

3 个回复

倒序浏览
电脑配置还可以的话  可以装个虚拟机  或者黑苹果
回复 使用道具 举报
我也没电脑,楼主可以试试在Sublime Text里面写,虽然不能编译但是有关键字提示
回复 使用道具 举报
楼主可以改成猜4位数的 每一位提示是否正确
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马