我是靠谱客的博主 碧蓝泥猴桃,最近开发中收集的这篇文章主要介绍猜大小押宝(c语言简单控制台程序),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

程序课上的一个小东西,没有什么难度,唯一需要注意的就是逻辑吧,很多输出字段懒得写了,将就着看吧




#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <conio.h>
void tpyeRand(int *a){
    printf("r");
    a[1] = rand()%6+1;
    a[0] = rand()%6+1;
    a[2] = rand()%6+1;
    printf("%d,%d,%d",a[0],a[1],a[2]);

}
int main()
{
    int flag;
    int ans;
    int money;
    int me,computer;
    int dict[3];
    me = computer = 1000;
    while(1){
    if(computer<=0|| me ==0){
        printf("Game Overn");
        break;
    }
    printf("请输入大小:(1为大,0为小)n");
    scanf("%d",&flag);
out:
    printf("请输入押宝金额n");
    scanf("%d",&money);
    if(me-money < 0){
        printf("你的钱不够啦!!!!n");
        goto out;
    }
    system("cls");
    printf("现在开始投掷骰子,按任意键停下n");
    while(!kbhit()){
        tpyeRand(&dict);
    }
    getch();
    printf("n");
    ans = (dict[0]+dict[1]+dict[2])/3;
    if((ans>9)==flag){
        printf("You Win!!!n");
        me += money;
        computer -= money;
    }
    else{
        printf("You defluat!!!n");
        me -= money;
        computer += money;
    }
    printf("你的现有金钱为%d,电脑的现有金钱为%dn",me,computer);
    }
    return 0;
}

最后

以上就是碧蓝泥猴桃为你收集整理的猜大小押宝(c语言简单控制台程序)的全部内容,希望文章能够帮你解决猜大小押宝(c语言简单控制台程序)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部