摘要: 二叉树: #include <iostream> using namespace std; int main(){ int s=1,c=1,l=1; int n; cin>>n; while(l<n){ c++; s*=2; l+=s; } cout<<c; return 0; } 五个数字组成不同 阅读全文
posted @ 2024-09-14 22:47 -刘-j-x- 阅读(12) 评论(0) 推荐(0)