X:\C_Algo_Prog.c
#include stdio.h
#include math.h
/*
the html code used here means that I can't put the
<> braces around the stdio.h and math.h
initilization. Sry FIC nerds.
*/
int main(void)
{
char understand;
printf("Do you understand this?");
scanf(" %c", &understand);
if(understand=='n' || understand=='N')
{
printf("that's ok. It's a nerd thing.\n\n");
}
else
{
printf("\nDon't worry, scientist are gonna reach a");
printf("breakthrough.\n");
printf("They'll find a cure for you eventually.\n");
}
printf("\nDe arimasu!\n");
printf("\n~Yuki Nagato is not amused by your");
printf(" bullshit~");
return(0);
}
Do you understand this?
If no then that's ok. It's a nerd thing.
If you do, well then.
Don't worry, scientist are gonna reach a breakthrough.
They'll find a cure for you eventually.
De arimasu!
~Yuki Nagato is not amused by your bullshit~
0 Response to "X:\C_Algo_Prog.c"