10 2021 档案

摘要:#include <iostream> #include <cstring> #include <vector> using namespace std; const int MAX = 6; struct Tree{ double L, R; //树的左边和右边的长度 Tree():L(0), R 阅读全文
posted @ 2021-10-11 19:13 旅玖旅玖 阅读(46) 评论(0) 推荐(0)
摘要:1. 四平方和定理 任何一个自然数都能由四个平方和组成 2. a²-(a+1)²-(a+2)²+(a+3)²=4; (a−1)³+(a+1)³+(−a)³+(−a)³=6a; 3 a*b的后导0个数 =a的后导0个数+b的后导0个数 1. zuhe[i][j]=zuhe[i-1][j]+zuhe[i 阅读全文
posted @ 2021-10-07 21:27 旅玖旅玖 阅读(85) 评论(0) 推荐(0)