CodeKnight
CodeKnight
全部文章
题解
归档
标签
去牛客网
登录
/
注册
CodeKnight的博客
全部文章
/ 题解
(共2篇)
题解 | #魔法数字变换#
include using namespace std; int main(){ int n,temp = 0; cin >> n; while(n != 1) { if(n % 2 == 0) { n = n/2...
2021-06-07
0
396
题目描述 计算 1+(1+2)+(1+2+3)+...+(1+2+3+...+n)
用递归的思想很好解决,一个求和函数就能搞定(代码如下): #include <iostream> using namespace std; int sum(int n) { int total = 0; if(n > 0) { ...
2021-05-17
2
781