07 2021 档案

摘要:摘自:(48条消息) 曼哈顿距离算法详解(含公式)_一颗小甜心的博客-CSDN博客_曼哈顿距离 阅读全文
posted @ 2021-07-28 19:12 焓青 阅读(39) 评论(0) 推荐(0)
摘要:摘自:ACwing #include <iostream>#include <cstring>#include <algorithm>using namespace std;int main(){ int n; cin>>n; bool is_prime = true; for(int i = 2 阅读全文
posted @ 2021-07-22 22:17 焓青 阅读(280) 评论(0) 推荐(0)
摘要: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++ } 阅读全文
posted @ 2021-07-21 15:31 焓青 阅读(14) 评论(0) 推荐(0)