标题:[求助]初学者的问题 谢谢
只看楼主
luckhai
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-3-11
 问题点数:0 回复次数:4 
[求助]初学者的问题 谢谢
我是一个初学这~ 想问一下 为什么我编的这个程序不按我的想法把H和T累加呢~ 先谢谢了
#include<iostream.h>
#include<stdlib.h>
#include<time.h>
int main()
{for(int i=1;;i++)
{ int T=0,H=0,x=0,y=0;
srand(time(0));
T=rand()%10+1;
H=rand()%10+1;
if(T>=1&&T<=5)
T=3;
else
if(T==6||T==7)
T=-6;
else
T=1;
if(H==1||H==2)
H=0;
else
if(H==3||H==4)
H=9;
else
if(H=5)
H=-12;
else\
if(H>=6&&H<=8)
H=1;
else
H=-2;
x+=H; //这个地方为什么不累加呢 还有下一行的 谢谢
y+=T;
cout<<"乌龟在"<<x<<"的位置。";
cout<<"\n兔子在"<<y<<"的位置。";
if(x>=70&&y<=70)
{cout<<"乌龟赢了!帅!"<<endl;
break;
}
if(x<=70&&y>=70)
{cout<<"兔子赢了,看上去这是应该的。"<<endl;
break;
}
if(x>=70&&y>=70)
{cout<<"乌龟居然能和兔子打个平手,不错啊!大家鼓励一下。"<<endl;
break;
}
}
return 0;
}
搜索更多相关主题的帖子: include 
2006-04-04 18:51
gototheworld
Rank: 1
等 级:新手上路
帖 子:218
专家分:0
注 册:2006-3-24
得分:0 
#include<iostream.h>
#include<stdlib.h>
#include<time.h>
int main()
{
int T=0,H=0,x=0,y=0; //在这里定义才能累加,你还有其他的错误,这个我运行过了是可以的
for(int i=1;i<=100;i++)
{
srand(time(0));
T=rand()%10+1;
H=rand()%10+1;
if(T>=1&&T<=5) T=3;
else if(T==6||T==7) T=3;
else T=1;
if(H==1||H==2) H=0;
else if(H==3||H==4) H=9;
else if(H=5) H=-12;
else if(H>=6&&H<=8) H=1;
else H=-2;
x+=H;
y+=T;
}
cout<<"乌龟在"<<x<<"的位置。";
cout<<"\n兔子在"<<y<<"的位置。";
if(x>=70&&y<=70)
{
cout<<"乌龟赢了!帅!"<<endl;
}
if(x<=70&&y>=70)
{
cout<<"兔子赢了,看上去这是应该的。"<<endl;
}
if(x>=70&&y>=70)
{
cout<<"乌龟居然能和兔子打个平手,不错啊!大家鼓励一下。"<<endl;
}
return 0;
}

路漫漫其修远兮 吾将上下而求索
2006-04-04 20:57
gototheworld
Rank: 1
等 级:新手上路
帖 子:218
专家分:0
注 册:2006-3-24
得分:0 
用这个比较适合
#include<iostream.h>
#include<stdlib.h>
#include<time.h>
int main()
{
int T=0,H=0,x=0,y=0;
for(int i=1;;i++)
{
srand(time(0));
T=rand()%10+1;
H=rand()%10+1;
if(T>=1&&T<=5) T=3;
else if(T==6||T==7) T=3;
else T=1;
if(H==1||H==2) H=0;
else if(H==3||H==4) H=9;
else if(H=5) H=-12;
else if(H>=6&&H<=8) H=1;
else H=-2;
x+=H; //这个地方为什么不累加呢 还有下一行的 谢谢
y+=T;
if(x>=70&&y<=70)
{
cout<<"乌龟在"<<x<<"的位置。";
cout<<"\n兔子在"<<y<<"的位置。";
cout<<"乌龟赢了!帅!"<<endl;
break;
}
if(x<=70&&y>=70)
{
cout<<"乌龟在"<<x<<"的位置。";
cout<<"\n兔子在"<<y<<"的位置。";
cout<<"兔子赢了,看上去这是应该的。"<<endl;
break;
}
if(x>=70&&y>=70)
{
cout<<"乌龟在"<<x<<"的位置。";
cout<<"\n兔子在"<<y<<"的位置。";
cout<<"乌龟居然能和兔子打个平手,不错啊!大家鼓励一下。"<<endl;
break;
}
}
return 0;
}

路漫漫其修远兮 吾将上下而求索
2006-04-04 21:29
luckhai
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-3-11
得分:0 

谢谢2楼的了~
我是刚学C++~ 还有许多要学习的~


2006-04-05 15:27
luckhai
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-3-11
得分:0 

哈哈 彪了 每次循环都执行赋值运算了~ 丢人了 呵呵

[此贴子已经被作者于2006-4-5 15:35:45编辑过]


2006-04-05 15:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-55079-1-1.html




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

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