f<-function(n){
famif<-runif(30000)
y<-0
count<-0
for(i in 1:30000){
if(famif[i]<(n-y)/n){
if(y==n){
break
}else{
y<-y+1
count<-count+1
}
}else{
count<-count+1
}
回答1件
あなたの回答
tips
プレビュー
投稿2021/12/08 05:49
編集2021/12/09 12:53f<-function(n){
famif<-runif(30000)
y<-0
count<-0
for(i in 1:30000){
if(famif[i]<(n-y)/n){
if(y==n){
break
}else{
y<-y+1
count<-count+1
}
}else{
count<-count+1
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/08 09:15
2021/12/08 09:32 編集
2021/12/09 03:40