| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 508 人关注过本帖
标题:[求助]我的玩骰子游戏不会循环,
只看楼主 加入收藏
yjh8656
Rank: 1
等 级:新手上路
帖 子:46
专家分:0
注 册:2007-3-6
收藏
 问题点数:0 回复次数:1 
[求助]我的玩骰子游戏不会循环,

编了个玩骰子游戏,但是不能循环下注, 就是说只运行一下才能压一下注,请帮我加一个循环,谢谢.
#include"stdio.h"
#include"stdlib.h"
#include"time.h"

int rollDice(void);
main()
{
int sum;/*骰子点数*/
int m;/*下注金额*/
int i=500;/*原始金额*/
printf("****************\nwelcome to this game\n****************\n");
printf("you have 500$ now");
printf("please chip in\n");
if(i>0)
{
scanf("%d",&m);
srand(time(NULL));
sum=rollDice();
switch(sum)
{
case 1:
case 2:
case 3:
i=i-m;
printf("you lost\n");
printf("your money is %d\n",i);
break;
case 4:
case 5:
case 6:
i=i+m;
printf("you won\n");
printf("you money is %d\n",i);
break;
}
}
else of(i<=0)
printf("you have not money now\n");
printf("please chip in\n");
}
int rollDice(void)
{
int del;
del=1+(rand()%6);
printf("you del is%d\n",del);
return del;
}

搜索更多相关主题的帖子: include please 游戏 
2007-04-10 21:26
nuciewth
Rank: 14Rank: 14Rank: 14Rank: 14
来 自:我爱龙龙
等 级:贵宾
威 望:104
帖 子:9786
专家分:208
注 册:2006-5-23
收藏
得分:0 
do{
printf("再来一次(Y/N):");
getchar();
scanf("%c",&ch);
}
while(ch=='y'||ch=='Y');

倚天照海花无数,流水高山心自知。
2007-04-10 22:03
快速回复:[求助]我的玩骰子游戏不会循环,
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021469 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved