摘要: 1. Windows操作系统及软件Windows操作系统是1985年美国微软公司研发的操作系统,分为32位和64位。微软开发的软件包含:office系列办公软件,word,PowerPoint,Excel,access等,在Windows操作系统中可执行文件是以.exe为扩展名。1. Linux操作 阅读全文
posted @ 2024-09-15 15:16 王一行(小号) 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 中缀表达式转前缀表达式: 举例:(1+2)/3*4 1.根据正常的运算顺序,应该先算(1+2),所以这里先改(1+2): 括号可以去掉,变成1+2,把1+2看成是xyz形式,‘1’对应x,‘+’对应y,‘2’对应z;然后改成yxz形式,也就是+12。 2.随后把(+12)看作一个整体(加上括号便于区 阅读全文
posted @ 2024-08-03 21:04 王一行(小号) 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> #include <fstream> using namespace std; int main(){ ofstream out; string name; int name1; ifstream outfile; outfile.open("out 阅读全文
posted @ 2024-07-29 14:51 王一行(小号) 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main(){ string a,b; cin>>a>>b; vector<int> x,y; for(int i = a.size()-1;i>=0;i--){ x.push_back(a[i]-' 阅读全文
posted @ 2024-07-28 20:09 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-07-12 15:42 王一行(小号) 阅读(2) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2024-07-12 15:36 王一行(小号) 阅读(2) 评论(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:09 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> #include "minecraft.h" #include <Windows.h> using namespace std; TxMinecraft mc; int main() { bool con = mc.ConnectMinecraft( 阅读全文
posted @ 2024-06-15 10:00 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int> a; a.push_back(1); int j; for(int g = 2;g<=n;g++){ for(int i = 0; 阅读全文
posted @ 2024-06-14 19:46 王一行(小号) 阅读(2) 评论(0) 推荐(0) 编辑
摘要: //mysocket.h #ifndef __MYSOCKET_H__ #define __MYSOCKET_H__ //头文件保护 #include<bits/stdc++.h> #include<winsock.h> #pragma comment(lib,"ws2_32.lib") using 阅读全文
posted @ 2024-06-08 10:03 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑