This is coded in C. I put the program here on Codepad.org, but the site doesn't seem to be working at the moment...
#include
int main (void)
{
int life = 5;
while (life > 0)
{
printf("\nOrk Deals 1 Damage!");
life = life - 1;
}
printf("\nYou are dead!");
return 0;
}
No comments:
Post a Comment