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

  1. //
  2. //  main.c
  3. //  剪刀石头布
  4. //
  5. //  Created by apple on 15/5/24.
  6. //  Copyright (c) 2015年 双元课堂(王建军). All rights reserved.
  7. //

  8. #include <stdio.h>
  9. #include <stdlib.h>

  10. int main(int argc, const char * argv[]) {
  11.    
  12.     printf("欢迎来到石头剪刀布游戏!\n");
  13.     int flag=0;
  14.     printf("输入0进入游戏,退出游戏请输入其他数字!\n");
  15.     scanf("%d",&flag);
  16.     while(!flag)
  17.     {
  18.         int clientCount=0;
  19.         int computerCount = arc4random_uniform(3)+1;
  20.         
  21.         printf("请输入一个1-3的整数重新进入游戏,输入其他数退出游戏\n");
  22.         scanf("%d",&clientCount);
  23.         
  24.         if(clientCount==computerCount)
  25.         {
  26.             printf("真遗憾,平局!\n");
  27.         }
  28.         else if((computerCount==1&&clientCount==2)||(computerCount==2&&clientCount==3)||(computerCount==3&&clientCount==1))
  29.         {
  30.             printf("恭喜你,赢了!\n");
  31.         }
  32.         
  33.         else if((computerCount==1&&clientCount==3)||(computerCount==2&&clientCount==1)||(computerCount==3&&clientCount==2))
  34.         {
  35.             
  36.             printf("运气太臭,输了!\n");
  37.         }
  38.         else
  39.         {
  40.             flag=1;
  41.         }
  42.       
  43.     }
  44.   printf("退出游戏!\n");
  45.     return 0;
  46. }
复制代码

27 个回复

正序浏览
加油,现在的我自学中!
回复 使用道具 举报
fixer 中级黑马 2015-6-15 21:51:35
26#
哎哟,不错哦
回复 使用道具 举报
goldboy 来自手机 中级黑马 2015-6-15 21:49:35
25#
还可以吧,要是你看到推箱子就不会说石头剪刀布了
回复 使用道具 举报
让我们这没学会的望尘莫及啊。。。
回复 使用道具 举报
好复杂的样子。。
回复 使用道具 举报
看来我要换头像了
回复 使用道具 举报
用C语言写一个:victory:
回复 使用道具 举报
aofex 中级黑马 2015-6-14 22:29:14
20#
aSmallStone 发表于 2015-5-24 22:17
慢慢长征路。。。。

:victory: 照片是本人吗?   
回复 使用道具 举报
aofex 中级黑马 2015-6-14 22:27:42
19#
aSmallStone 发表于 2015-5-24 22:17
慢慢长征路。。。。

:lol  照片是本人吗?
回复 使用道具 举报
是啊  学习的过程中感觉有点难啊
回复 使用道具 举报
万事开头难,只为明天新征程
回复 使用道具 举报
哈哈,很多老师教学用的实例都挺有意思的
回复 使用道具 举报
lipeng524824 来自手机 中级黑马 2015-6-13 23:04:19
15#
基础班刚开始的路过,感觉到危机感了!
回复 使用道具 举报
goldboy 来自手机 中级黑马 2015-6-13 22:16:59
14#
石头剪刀布应该有很多种写法
回复 使用道具 举报
刚学过去这个,哈哈 还行吧
回复 使用道具 举报
aofex 中级黑马 2015-6-13 21:07:19
12#
评论下  收藏了
回复 使用道具 举报
过来学学经验..
回复 使用道具 举报
CQY 中级黑马 2015-6-13 18:16:58
10#
好强大的呀,
回复 使用道具 举报
12下一页
您需要登录后才可以回帖 登录 | 加入黑马