07 2021 档案
摘要:摘自:(48条消息) 曼哈顿距离算法详解(含公式)_一颗小甜心的博客-CSDN博客_曼哈顿距离
阅读全文
摘要:摘自:ACwing #include <iostream>#include <cstring>#include <algorithm>using namespace std;int main(){ int n; cin>>n; bool is_prime = true; for(int i = 2
阅读全文
摘要:int main(){ int a,b; a=1; b=1; int n; cin>>n; int i=0;while (i<n-1)//循环多少次,可以推出来。 { c=a+b; a=b; b=c; i++ }
阅读全文