arxon: sooo anyone interested in
Back to the Future: The Game
Sam & Max: Devil's Playhouse
Poker Night at the Inventory
The Walking Dead - Season 1
GONE Puzzle Agent 1 & 2
Tales from the Borderlands
GONE Poker Night 2
GONE all steam keys. Be Creative in your requests :)
#include <stdio.h>
#include <stdbool.h>
int main(void)
{
int num0;
char str1[50] = "Back to the Future: The Game";
int MadeinChina_games_count;
printf("give 1 for madeinchina or 0 to someone else\n");
scanf("%d",&num0);
switch(num0)
{
case 1:
{
MadeinChina_games_count++;
printf("weeeee one new game ^^\n");
break;
}
case 0:
printf("error 404 creativity not found\n");
break;
default:
printf("wrong number!!! :P\n");
break;
}
return 0;
}
/*i know it is more easy with if statement just wanted to use switch statement because i have a long time to use it :D*/
// it mess the spaces -_- //