上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 1. Linux操作系统 Linux全称为GNU/Linux,是一种免费使用和自由传播的类UNIX操作系统,其内核由林纳斯▪本纳第克特▪托瓦兹于1991年10月5号首次发布,是一个多用户,多任务,支持多线程核多CPU的操作系统。支持32位和64位硬件。 使用Linux内核的操作系统有Ubuntu,C 阅读全文
posted @ 2024-09-15 15:18 -刘-j-x- 阅读(13) 评论(0) 推荐(0)
摘要: 二叉树: #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)
摘要: #include <iostream> using namespace std; int main(){ int l,n; cin>>l>>n; for(int i=1;i<=n;i++){ int h=0; for(int j=1;j<=i;j++){ h+=a[j]; } while(a[i]! 阅读全文
posted @ 2024-08-12 09:50 -刘-j-x- 阅读(25) 评论(0) 推荐(0)
摘要: 中缀表达式一、基本概念1、中缀表达式:操作符以中缀形式位于运算数中间(如:3+2),是我们日常通用的算术和逻辑公式表示方法。2、后缀表达式:又称逆波兰式,操作符以后缀形式位于两个运算数后(如:3+2的后缀表达形式就是3 2 +)。3、前缀表达式:又称波兰式,操作符以前缀形式位于两个运算数前(如:3+ 阅读全文
posted @ 2024-08-02 14:09 -刘-j-x- 阅读(86) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main(){ freopen("in.txt","r",stdin); freopen("out.txt","w",stdout); string c; cin>>c; int i=c.size(); int 阅读全文
posted @ 2024-07-29 14:51 -刘-j-x- 阅读(14) 评论(0) 推荐(0)
摘要: 1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 long b; 5 int w; 6 int c=0; 7 int f(int c){ 8 if(c==1){ 9 return 1; 10 }else{ 11 re 阅读全文
posted @ 2024-07-10 15:58 -刘-j-x- 阅读(11) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
posted @ 2024-06-22 15:59 -刘-j-x- 阅读(16) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
posted @ 2024-06-22 15:10 -刘-j-x- 阅读(41) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
posted @ 2024-06-21 20:34 -刘-j-x- 阅读(11) 评论(0) 推荐(0)
摘要: #include <iostream> #include "Windows.h" #include "minecraft.h" using namespace std; TxMinecraft mc; int main(int argc, char** argv) { bool con=mc.Con 阅读全文
posted @ 2024-06-15 09:58 -刘-j-x- 阅读(26) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 12 下一页