急急急。。谁能给我一个用C语言(TC2.0)编写的简单动画程序要有详细解释, 原创
3个回答
展开全部
#include "time.h"
#include "conio.h"
#include "stdio.h"
#include "string.h"
/*---按键游戏---*/
Game()
{
time_t Ttime ;
double Score = 0 ;
int Times = 0 ;
int j , i , Longer , x = 8 , y ;
char *Letter = "Q W E R T Y U I O P [ ] A S D F G H J K L ' Z X C V B N M , . /" ; /*全部按钮*/
char get ;
textcolor(12) ;
gotoxy(8 , 2) ;
cprintf("%s" , Letter) ;
gotoxy(27 , 12) ;
printf("Score = %d , Times = %d" , Score , Times) ;
for (j = 4 ; j < 77 ; j++)
{
gotoxy(j , 25) ;
printf("-") ; /*屏幕25楼画线条*/
}
Longer = strlen(Letter) ;
while (*Letter != '\0')
{
for (y = 2 , i = 0 ; y < 25 ; y++)
{
delay(40000) ;
gotoxy(x , y - 1) ;
printf(" ") ;
gotoxy(x , y) ;
printf("%c" , *(Letter + i)) ; /*从屏幕2楼往24楼下掉字母*/
if (kbhit())
{
get = getch() ;
if (get == *(Letter + i) || (get - 32) == *(Letter + i))
{
Score++ ; Times++ ;
gotoxy(27 , 12) ;
printf("Score = %.2lf , Times = %d" , Score / 26 , Times) ;
gotoxy(x , 24) ;
printf("%c" , 1) ;
break ;
}
}
}
Letter += 2 ;
x += 2 ;
}
}
main()
{
Game() ;
}
#include "conio.h"
#include "stdio.h"
#include "string.h"
/*---按键游戏---*/
Game()
{
time_t Ttime ;
double Score = 0 ;
int Times = 0 ;
int j , i , Longer , x = 8 , y ;
char *Letter = "Q W E R T Y U I O P [ ] A S D F G H J K L ' Z X C V B N M , . /" ; /*全部按钮*/
char get ;
textcolor(12) ;
gotoxy(8 , 2) ;
cprintf("%s" , Letter) ;
gotoxy(27 , 12) ;
printf("Score = %d , Times = %d" , Score , Times) ;
for (j = 4 ; j < 77 ; j++)
{
gotoxy(j , 25) ;
printf("-") ; /*屏幕25楼画线条*/
}
Longer = strlen(Letter) ;
while (*Letter != '\0')
{
for (y = 2 , i = 0 ; y < 25 ; y++)
{
delay(40000) ;
gotoxy(x , y - 1) ;
printf(" ") ;
gotoxy(x , y) ;
printf("%c" , *(Letter + i)) ; /*从屏幕2楼往24楼下掉字母*/
if (kbhit())
{
get = getch() ;
if (get == *(Letter + i) || (get - 32) == *(Letter + i))
{
Score++ ; Times++ ;
gotoxy(27 , 12) ;
printf("Score = %.2lf , Times = %d" , Score / 26 , Times) ;
gotoxy(x , 24) ;
printf("%c" , 1) ;
break ;
}
}
}
Letter += 2 ;
x += 2 ;
}
}
main()
{
Game() ;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不会,TC2.0跟VC没有太大差别,看看这个
http://zhidao.baidu.com/question/106444462.html
http://zhidao.baidu.com/question/106444462.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询