fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int num, i, isPrime = 1; // isPrimeは素数判定用フラグ
  5.  
  6. printf("整数を入力してください: ");
  7. scanf("%d", &num);
  8.  
  9. if (num <= 1) {
  10. printf("1以上の整数を入力してください。\n");
  11. return 0;
  12. }
  13.  
  14. for (i = 2; i * i <= num; i++) {
  15. if (num % i == 0) {
  16. isPrime = 0; // 割り切れたら素数ではない
  17. break;
  18. }
  19. }
  20.  
  21. if (isPrime) {
  22. printf("%d は素数です。\n", num);
  23. } else {
  24. printf("%d は素数ではありません。\n", num);
  25. }
  26.  
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
整数を入力してください: 32767 は素数ではありません。