int f(int n){
if( n > 100) return 1;
return f(n+1);}
Permalink | 記事への反応(1) | 02:50
ツイートシェア
nの増加に対して実はリニアじゃない