Created
November 21, 2018 03:06
-
-
Save CalebCurry/d13c30d22ca9cf3aa3c4c74b0b95ca06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//remember to #include <stdbool.h> | |
bool isPrime = true; | |
int i; | |
for(i = 2; i < input; i++) | |
{ | |
if(number % i == 0) | |
{ | |
isPrime = false; | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment