@FURRY GUY WOW! TAHNK YOU SO MUCH FOR THE HELP!!!! I REALLY APPRECIATE IT! MY PROGRAMMING TEACHER DID NOT TEACH US THE BASICS SO YEAH I HAD TO LEARN ON MY OWN! I LOVE YOU DUDE!! U SAVED MY ASS YOU HAVE NO IDEA HOW HAPPY I AM RIGHT NOW!!!!!
If you want a program that ALWAYS crashes no matter what numbers you enter just change the equality check (==) in my source on line 13 to assignment (=). divisor will always be zero and so the division by zero crashes the program.
That is why I always write my if checks:
if (constant/literal == variable)
Try to assign a variable's value to a constant/literal and the compile will fail.
There could be one more check before you do the math:
if the divisor < 0.
Change line 17 to elseif (number < 0 || divisor < 0)