立方和不等式——python 摘要:解题思路:注意事项:有等号参考代码:n = int(input())s = 0i = 1 while s<=n: s+=i**3 i+=1print(i-2)…… 题解列表 2023年04月01日 0 点赞 0 评论 95 浏览 评分:0.0
编写题解 1142: C语言训练-立方和不等式(python) 摘要:n = int(input()) s = t = 0 i = 1 while t <= n: t += pow(i, 3) s += 1 i += 1 prin 题解列表 2022年04月30日 0 点赞 0 评论 280 浏览 评分:9.9
C语言训练-立方和不等式-题解(Python代码)70分分析 摘要:```python # coding=utf-8 n=int(input()) def lfh(k): if k==0: return 0 else: …… 题解列表 2020年06月04日 0 点赞 0 评论 624 浏览 评分:0.0
C语言训练-立方和不等式-题解(Python代码) 摘要: n=int(input()) s=0 for i in range(1,1000): s+=i**3 if(s>n): …… 题解列表 2020年02月19日 0 点赞 0 评论 635 浏览 评分:2.0