// Number Challenge // number_challenge.c // // This program was written by (zXXXXXXX) // on // // This program scans in a number and determines if that number satisfies the // number challenge. For a number to satisfy the challenge, it has to be // divisible by 3 but not by 300. #include int main(void) { //Prompt the user to enter a number // Repeatedly scan in a number to check until CTRL+D is pressed return 0; }