- 论坛徽章:
- 0
|
#include <string.h>
#include <stdio.h>
struct person
{
int no;
char name[20];
int count;}leader[2]={1,"ko",60,2,"bug",40};
main()
{
int a,i,c,z,e,b;
int num,d=0;
a=300;
c=500;
e=3;
int name;
printf("1:ko-60/10%,2:bug-40/40%,other:20/20%*4,3:HP+120(3times) \n");
while(a>0&&c>0)
{
scanf("%d",&name);getchar();
switch (name)
{
case 1:
srand((unsigned)time(0));
z=rand()%10+1;
if(z==5)
{
b=a-(z*30);
printf("HIT! %d*30 \n",z);break;
}
b=a-leader[0].count;break;
case 2:
srand((unsigned)time(0));
z=rand()%10+1;
if(z==3||z==4||z==5||z==6)
{
b=a-(z*20);
printf("HIT! %d*20 \n",z);break;
}
else b=a-leader[1].count;
break;
case 3:
{
if(e<=0)
{printf("+HP function is Empty!!! Use 4 function \n");}
else
{
c=c+120;
b=a;
e=e-1;
printf("Your HP +120! \n");
break;}
}
default:
srand((unsigned)time(0));
z=rand()%10+1;
if(z==7||z==6)
{
b=a-(z*40);
printf("HIT! %d*40 \n",z);break;
}
else b=a-20;break;
}
srand((unsigned)time(0));
num=rand()%15+1;
if(num==3||num==4||num==6||num==5||num==2)
{
d=c-(num*30);
printf("NPC HIT! %d*30 \n",num);
}
else if (num==1&&b>0)
{
if(d==0)
{
d=500;
b=b+80;
d=c;
printf ("NPC HP + 80! \n");
}
else
{
b=b+80;
d=c;
printf ("NPC HP + 80! \n");
}
}
else
{ d=c-(num*10);}
c=d;
a=b;
printf("NPC hp is %d \n",b);
printf("Your hp is %d \n",c);
}
if(b>0&&c<=0)
{
printf ("NPC WIN!! \n");
}
else if (b<=0&&c>0)
{
printf ("You WIN!! \n");
}
else if (b<=0&&c<=0)
{
printf ("ALL lose. \n");
}
}
打斗场面:
[root@localhost win_linux_share]# ./g
1:ko-60/10%,2:bug-40/40%,other:20/20%4,3:HP+120(3times)
2
NPC hp is 260
Your hp is 430
4
NPC HP + 80!
NPC hp is 320
Your hp is 430
4
NPC hp is 300
Your hp is 340
4
NPC hp is 280
Your hp is 210
4
HIT! 6*40
NPC HIT! 6*30
NPC hp is 40
Your hp is 30
1
NPC hp is -20
Your hp is 20
You WIN!!
希望大家都试试~~~提出宝贵意见和建议
谢谢! |
|