Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int isPrime(int n){
- for(int i = 2; i < n; i++){
- if(n % i == 0){
- return 0;
- }
- }
- return 1;
- }
- int main(){
- printf("%s\n", isPrime(13) ? "Yes" : "No");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement