C言語

#geshi(c,number){{

#include <stdio.h>

#define MAX 41

/* 判定 */ int judge(const int x){

 int i;
 if(x % 3 == 0)
   return 1;
 for(i=x; i; i /= 10)
   if(i % 10 == 3)
     return 1;
 
 return -1;

}

int main(){

 int i;
 for(i=1; i <= MAX; i++){
   if(judge(i) == -1)
     printf("%d\n", i);
   else
     printf("Aho\n");
 }
 return 0;

} }}


トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2023-02-23 (木) 23:33:35