以下是我做的遊戲
請問有C++有計時的指令功能嗎
因為我想不到怎麼讓這個遊戲結束比較好
所以想用計時.
如果有大大的更好的想法 請指教...謝謝
p.s如果還有程式還有需要修正的請指導^^
謝謝...
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<dos.h>
#include<time.h>
//----------------------
#define up 72
#define down 80
#define left 75
#define right 77
#define esc 27
//----------------------
char m=15;
int x=40,y=49;
int object={0};
int missile={0};
int shoot;
int t;
int temp=48;
int ex=21,ey=2;
int score;
int bx,by;
int bombs=3;
float time_s,time_e;
float shoot_s,shoot_e;
float lag=0.0001,d=10;
//---------------------------------------------------------------------------
void side() //邊框描繪
{
int z;
clrscr();
gotoxy(20,1);
printf("%c",218);
gotoxy(60,1);
printf("%c",191);
gotoxy(20,50);
printf("%c",192);
gotoxy(60,50);
printf("%c",217);
for(z=21;z<=59;z++)
{
gotoxy(z,50);
printf("%c",196);
gotoxy(z,1);
printf("%c",196);
}
for(z=2;z<=49;z++)
{
gotoxy(20,z);
printf("%c",179);
gotoxy(60,z);
printf("%c",179);
}
}
//------------------------------------------------------------------------------
v ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容