fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int number;
  5.  
  6. printf("1から100の整数を入力してください: ");
  7. scanf("%d", &number);
  8.  
  9. if (number < 1 || number > 100) {
  10. printf("入力は1から100の範囲内である必要があります。\n");
  11. } else if (number % 2 == 0) {
  12. printf("%d は偶数です。\n", number);
  13. } else {
  14. printf("%d は奇数です。\n", number);
  15. }
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
1から100の整数を入力してください: 入力は1から100の範囲内である必要があります。