摘要: #include<iostream> using namespace std; int main(){ int n,sum=0,m=0; cin>>n; for(int i=1;i;i*=2){ sum++; m+=i; if(m>=n){ break; } } cout<<sum; return 阅读全文
posted @ 2024-09-14 20:57 陈若麟 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 一、基本概念1、中缀表达式:操作符以中缀形式位于运算数中间(如:3+2),是我们日常通用的算术和逻辑公式表示方法。2、后缀表达式:又称逆波兰式,操作符以后缀形式位于两个运算数后(如:3+2的后缀表达形式就是3 2 +)。3、前缀表达式:又称波兰式,操作符以前缀形式位于两个运算数前(如:3+2的前缀表 阅读全文
posted @ 2024-08-02 14:08 陈若麟 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main(){ freopen("in.txt","r",stdin); freopen("out.txt","w",stdout); string s; cin>>s; int a; int b[7]; for 阅读全文
posted @ 2024-07-29 14:53 陈若麟 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> using namespace std; int a(int b){ if(b<=1){ return 1; } return b*a(b-1); } int main(){ int n,s=0; cin>>n; for(int 阅读全文
posted @ 2024-07-10 15:59 陈若麟 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> using namespace std; int main(){ int n,sam=0; cin>>n; vector<int> a; a.push_back(1); for(int i=2;i<=n;i++){ for(in 阅读全文
posted @ 2024-07-10 15:59 陈若麟 阅读(3) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2024-06-22 15:00 陈若麟 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include "minecraft.h" #include "Windows.h" using namespace std; TxMinecraft mc; //string id,data; int main() { bool con=mc.Connec 阅读全文
posted @ 2024-06-15 10:00 陈若麟 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> using namespace std; int main(){ int n; cin>>n; vector<int> a; int b=1; string s; for(int i=n;i>=1;i--){ b*=i; } / 阅读全文
posted @ 2024-06-14 20:31 陈若麟 阅读(4) 评论(0) 推荐(0) 编辑
摘要: //客户端 #include "mysocket.h" //头文件 using namespace std; int main(int argc, char** argv) { cout<< " 客户端 \n"; startup(); //检测版本号 if(LOBYTE(wsdata.wVersio 阅读全文
posted @ 2024-06-08 10:03 陈若麟 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> using namespace std; int main(){ string s; cin>>s; vector<int> a; int b; cin>>b; for(int i=s.size()-1;i>-1;i--){ a 阅读全文
posted @ 2024-06-07 20:28 陈若麟 阅读(5) 评论(0) 推荐(0) 编辑