athoslive Posted April 14, 2012 Report Share Posted April 14, 2012 Meu código não funciona muito bem...#include <stdio.h> #include <conio.h> #include <stdlib.h> #include <time.h> #include <dos.h> #include <ctype.h> void main() { char a; int col = 10; int col2= 75; int tentativas=10; clrscr(); printf("joguinho legal , digite D-F para atirar embaixo / E-R para atirar emcima / W-S para subir e descer com a nave, e Q para sair"); while(tentativas<100) { if (kbhit()) a=tolower(getch()); gotoxy(col2--,3); printf(" <-þ \r"); if(col2==5) { printf("Voce perdeu,aperte algo para sair."); a==getch(); exit(1); } else { gotoxy(col2++,3); printf(" þ-> \r"); if(col2==71) a=' '; } gotoxy(col2--,2); printf(" <-þ \r"); if(col2==5) { printf("Voce perdeu,aperte algo para sair."); a==getch(); exit(1); } else { gotoxy(col2++,2); printf(" þ-> \r"); if(col2==71) a=' '; } if(a=='d') { clrscr(); printf("\n\n >-"); gotoxy(col--, 3); printf(" ® \r"); if (col == 8) a = ' '; delay(30); } if(a=='f') { Quote Link to comment Share on other sites More sharing options...
Question
athoslive
Meu código não funciona muito bem...
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.