鱼C论坛

 找回密码
 立即注册
查看: 2375|回复: 1

剪刀石头布问题,求解答,速进,在线等

[复制链接]
发表于 2013-12-3 20:20:07 | 显示全部楼层 |阅读模式
3鱼币
请给我个剪刀石头布问题的C语言代码,我想知道它,越简单越好,谢谢

最佳答案

查看完整内容

#include #include #include int main(void) { char gesture[3][10] = { "scissor", "stone", "cloth" }; int man, computer, result, ret; srand(time(NULL)); while (1) { computer = rand() % 3; printf("\nInput your gesture (0-scissor 1-stone 2-cloth):\n"); ret = scanf("%d", &man); if (ret != 1 || man < 0 || man > 2) { printf("Invalid input! Please input 0, 1 or 2.\n"); ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-3 20:20:08 | 显示全部楼层
#include <stdio.h>
#include <stdlib.h>
#include <time.h>         
int main(void)
{
        char gesture[3][10] = { "scissor", "stone", "cloth" };
        int man, computer, result, ret;
       
        srand(time(NULL));
        while (1) {
                computer = rand() % 3;
                printf("\nInput your gesture (0-scissor 1-stone 2-cloth):\n");
                ret = scanf("%d", &man);
                if (ret != 1 || man < 0 || man > 2) {
                        printf("Invalid input! Please input 0, 1 or 2.\n");
                        continue;
                }
                printf("Your gesture: %s\tComputer's gesture: %s\n",
                        gesture[man], gesture[computer]);
               
                result = (man - computer + 4) % 3 - 1;
                if (result > 0)
                        printf("You win!\n");
                else if (result == 0)
                        printf("Draw!\n");
                else
                        printf("You lose!\n");
        }
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 20:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表