在1~10000之间(包含1和10000)既不是某个整数的平方也不是某个

【升学】 在1~10000之间(包含1和10000)既不是某个整数的平方也不是某个整数的立

--------------------------------------------

傻大方资讯为您精选的网友回复(供您参考):

[编程]在1~10000之间(包含1和10000)既不是某个整数的平方也不是某个整数的立方的数有多少个?

--------------------------------------------

傻大方资讯为您精选的网友回复(供您参考):

[编程]            List<int> list = new List<int>();            for (int i = 1; i <= 10000; i++)            {                list.Add(i);            }            int index = 1;            while (index * index <= 10000)            {                list.Remove(index * index);                index++;            }            index = 1;            while (index * index * index <= 10000)            {                list.Remove(index * index * index);                index++;            }            MessageBox.Show(list.Count.ToString());输出结果 9883用的c#开发的,其他语言自行调整,原理相同

--------------------------------------------

傻大方资讯为您精选的网友回复(供您参考):

[编程]9884个

--------------------------------------------