寒假用了docker
2个月没用 结果还重新安装docker
忘了怎么用
为了免得以后忘写下下面内容
# If you dont have a docker installed, youll need to install docker curl -s https://get.docker.com/ | sh
# Use pip to install docker-compose pip install docker-compose…
一、教程简介
全新JAVAWEB(里程碑版)
一套更适合后端工程师学习的WEB教程 All in Java
1、后端
① Spring全家桶及微服务框架
② 高性能数据库和消息组件
③ Web攻击防护安全控制手段
④ 其他第三方SDK生态环境
......
2、前端
① 视图三大件&…
#include<stdio.h>
int fac(int n){if(n<1){return 1;}elsereturn fac(n-1)*n;
}
int main(){int i, result;for(i1;i<10;i){resultfac(i);printf("%d!%d\n",i,result);}}
输出结果: