#define _CRT_SECURE_NO_WARNINGS 1
#include
#include
void menu()
{
printf("**************Gamic Card**************n");
printf("***********press 1 to start***********n");
printf("***********press 2 to exit************n");
printf("请输入:>n");
}
struct P1
{
int mp1;
short hp1;
};
struct P2
{
int mp2;
short hp2;
};
void condition(short hp, int mp)
{
if (hp == 2)
{
printf("^-^ ");
printf("能量:%dn", mp);
}
else if (hp == 1)
{
printf("T-T ");
printf("能量:%dn", mp);
}
else
printf("*-*n");
}
int main()
{
menu();
struct P1 p1 = { 0,2 };
struct P2 p2 = { 0,2 };
int a=0;
scanf("%d", &a);
int b = 0;
int c = 0;
if (a != 1 && a != 2)
{
printf("输入错误,请重新选择");
scanf("%d", &a);
};
if (a == 1)
{
while (p1.hp1 > 0 && p2.hp2 > 0)
{
condition(p1.hp1,p1.mp1);
condition(p2.hp2,p2.mp2);
printf("1.攻 2.防 3.气功 4.充能n");
printf("p1选择n");
scanf("%d", &b);
while (p1.mp1
新手请多指教
服务器托管,北京服务器托管,服务器租用 htt服务器托管网p://www.fwqtg.net
机服务器托管网房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
双端队列是什么? 首先我们来看一下库中的双端队列能够调用的接口有哪些 可以看到它的成员函数就只有上面的几个,如果学过数据结构那么双端队列(priority_queue)其实就是一个堆,如果你没有学过双端队列,那么下面我们先来使用以下库中给我们的双端队列是怎么样…