摘要: 法一:正常顺序思路 #include <iostream> #include <cstdio> using namespace std; int main() { int a; cin>>a; while(a%10!=0) //循环结束条件 { cout<<a%10<<" "; a=a/10; } 阅读全文
posted @ 2020-03-28 20:05 py佐料 阅读(139) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdio> #include <cmath> using namespace std; int main() { long long int n; cin>>n; for(long long int i=2;i<=sqrt(n)+1;i 阅读全文
posted @ 2020-03-28 12:43 py佐料 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cstdio>using namespace std;int fib(int n){ // 递归终止,直接返回 if(n == 1 || n == 2) return 1; // 两次递归调用,求和并返回 return fib(n - 1) 阅读全文
posted @ 2020-03-28 12:36 py佐料 阅读(123) 评论(0) 推荐(0) 编辑