自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 Spring(二)

打包 Lifecycle=>package=>java -jar ssmp-0.0.1-SNAPSHOT.jar Windows端口被占用 查询端口 netstat -ano 查询指定端口 netstat -ano |findstr “端口号” 根据进程PID查询进程名称 tasklist |findstr “进程PID号” 根据PID杀死任务 taskkill /F /PID “进程PID号” 根据进程名称杀死任务 taskkill -f -t -im “进程名称” 临时属性设置 携带多个属性

2022-03-01 10:13:33 160

原创 SpringBoot学习(一)

SSMP整合

2022-02-26 14:55:07 324

原创 关于Invalid bound statement (not found)问题

关于整合mybatis中出现的Invalid bound statement (not found)问题

2022-02-21 18:57:37 197

原创 求解逆波兰式(求后缀表达式)

求解逆波兰式(求后缀表达式)(含+ - × ÷)先上源代码输入样例 先上源代码 // An highlighted block #include<cstdio> #include<cstring> #include<string> using namespace std; #define maxSize 50 int j = 0; int main() { double cal(double exp[], int k);//计算函数 double op(doubl

2021-03-23 17:36:37 212

原创 使用C语言实现简单四则计算器(带括号)

初步程序 目录初步程序中缀转后缀运算函数主函数 中缀转后缀 // void trans(char infix[], char s2[], int &top2) { char s1[maxSize];//存运算符辅助栈 int top1 = -1; int i=0; while(infix[i] !='\0') { if('0'<=infix[i]&&'9'>=infix[i]) { s2[++top2]=infix[i]; ++i;

2020-07-01 21:52:46 6225 2

原创 算法笔记实操记录

Chap3简单模拟3.5进制转换将输入的整数由p进制转换为Q进制 3.5进制转换 将输入的整数由p进制转换为Q进制 // #include<cstdio> int main() { int x,y,p,pow = 1; scanf("%d %d",&x,&p);//p为输入整数的进制 while(x!=0) { y = y + (x % 10) * pow; x = x/10; pow = pow*p; } int z[40]={0},num

2020-07-01 14:29:55 250

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除