用C语言编石头剪子布程序,要求如下

Drawaflowchartandwriteagameprogram:stone,scissorsandcloth.Thecomputergeneratearandomn... Draw a flow chart and write a game program: stone,scissors and cloth.
The computer generate a random number (1~3), 1 stand forstone, 2 stand for scissors, 3 stand for cloth.
You can input an integer number (between 1 and3) to compare with the random number. Then judge who can win. Notice pleasegive the compariso
展开
 我来答
物理公司的
推荐于2017-09-15 · TA获得超过5697个赞
知道大有可为答主
回答量:6105
采纳率:86%
帮助的人:1388万
展开全部
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(){
    int x,y,n;
    srand(time(NULL));
    printf("imput1-3:\n");
    scanf("%d",&x);
    y=rand()%3+1;
    n = x-y;
    
    if(n == 0)
        printf("wahahah!\n");
    else if(n == -1 || n == 2)
        printf("You win\n");
    else
        printf("You lose");
    return 0;
   
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式