一、最经典游戏之俄罗斯方块 #include<iostream>#include<math.h>#include<Windows.h>#include<conio.h>#include<ctime>usingnamespacestd;enumDIR{UP,RIGHT,DOWN,LEFT};time_tstart=0,finish=0;int_x=6,_y=1;//图形生成位置intmap[30][16]={0};intsharp[20][8]={{0,0,0,0,0,0,0,0},//I形...