人类思维与机器思维的对比 摘要:解题思路:多学数学吧注意事项:参考代码://尼科彻斯定理 //机器思维 #include<stdio.h> #include<math.h> #include<string.h> void …… 题解列表 2024年11月17日 2 点赞 0 评论 82 浏览 评分:0.0
为何会错1个求解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,i,j,arr[1000]; scanf("%d",&m); for(i=1,j=0;i<m*m*m…… 题解列表 2024年11月03日 0 点赞 0 评论 50 浏览 评分:9.9
C语言训练-尼科彻斯定理 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int m; c…… 题解列表 2024年08月12日 0 点赞 0 评论 69 浏览 评分:0.0
1127: C语言训练-尼科彻斯定理 摘要:```cpp #include using namespace std; int nkcs(int m){ int n=m*m*m,i; printf("%d*%d*%d=%d=",m,…… 题解列表 2024年08月01日 1 点赞 0 评论 60 浏览 评分:0.0
等差数列尼科彻斯定理 摘要:参考代码:/** * 尼科彻斯定理:任何一个整数m的立方都可以写成m个连续奇数之和 * 示例:13*13*13=2197=157+159+161+163+165+167+169+171+173…… 题解列表 2024年07月26日 0 点赞 0 评论 75 浏览 评分:0.0
利用数组的方法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<vector>int main() { int m = 0; cin >> …… 题解列表 2024年07月25日 0 点赞 0 评论 87 浏览 评分:0.0
1127尼科彻斯定理(数学规律解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int m;int sum = 0;//这个是计算输出的数的…… 题解列表 2024年06月12日 0 点赞 0 评论 90 浏览 评分:0.0
编写题解 1127: C语言训练-尼科彻斯定理(简单) 摘要:```c #include #include int main() { int m; scanf("%d", &m); int i = m * m + (m - 1); int …… 题解列表 2024年05月15日 0 点赞 0 评论 59 浏览 评分:0.0
STL deque优雅方案 摘要:解题思路:使用STL队列维护m个连续奇数注意事项:参考代码:#include<iostream> #include<cmath> #include<deque> using namespace …… 题解列表 2024年04月23日 0 点赞 0 评论 80 浏览 评分:0.0
C语言训练-尼科彻斯定理 简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum=0; scanf("%d",&n); printf("%d*%d…… 题解列表 2023年11月27日 0 点赞 0 评论 44 浏览 评分:0.0