下面是我的代码。我正在尝试将功能winter的输出放到textarea中。有人,请帮忙。
function winter(){
for(x=1;x<10;++x){
for(y=0;y<10;++y){
for(z=0;z<10;++z){
a=(x*x*x+y*y*y+z*z*z);
b=(x*100+y*10+z);
if(a==b){
//output textarea
}
}
}
}
}
<input type="button" onclick="winter();">
<textarea></textarea><!--output textarea-->
答案 0 :(得分:0)
喜欢吗?
var outputTextArea = document.getElementById('outputTextArea');
function winter(){
outputTextArea.value = '';
for(x=1;x<10;++x){
for(y=0;y<10;++y){
for(z=0;z<10;++z){
a=(x*x*x+y*y*y+z*z*z);
b=(x*100+y*10+z);
if(a==b){
outputTextArea.value += a + '\n';
}
}
}
}
}
<input type="button" onclick="winter();">
<textarea id="outputTextArea"></textarea>