潜水员徐海燕图片:高一数学

来源:百度文库 编辑:高考问答 时间:2024/07/05 20:01:51
4096开立方是多少

是16

16
用c++做个程序出来:
#include <iostream.h>

void main()
{
int x;
for(x=1;x<4096;x++)
if(x*x*x==4096)
{
cout<<"\n4096开立方是:"<<x;
break;
}
}

16

16