Sunday, November 07, 2004

programming madness

int main(){

int test;

printf("Please input number of tests to go:");
scanf("%d", &test);

if(test>0)
printf("Sighs... life sucks");

else
printf("Holidays are here!Yippee!");

return 0;
}


output:

Please input number of test to go: 7
Sighs... life sucks

No comments: