用vb求解,f(x)=x^3+x^2+x,x在(0—100),当f(x)=0时,求x的值

问题描述:

用vb求解,f(x)=x^3+x^2+x,x在(0—100),当f(x)=0时,求x的值

dim i as integer
for i=0 to 100
if i^3+i^2+i=0 then print i
next i
声明和输出根据需要自己增加