Home
Archives
Tags
About
RSS
日记
C语言程序集(31-45)
2020-04-03
31.计算1-2+3-4+5-...+99-100=? #include <stdio.h> #include <math.h> int main() { int sum = 0; for (in...
Read more
C语言程序集(16-30)
2020-04-03
16.打印*的10*10矩阵 #include <stdio.h> int main() { for (int i = 0; i < 10; i++){ for (int j = 0; j <...
Read more
pip3 常用命令
2020-04-03
1、安装目录 ~/Library/Caches/pip 2、查找需要安装的包 pip3 search <包名> 3、安装python包 pip3 install pip3 install <包名>==1.0.0...
Read more
Homebrew基本教程
2020-04-03
一、安装(需要 Ruby): ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" 二、基本命令: brew ins...
Read more
C语言程序集(1-15)
2020-04-03
1.输入两个数按从小到大的顺序排列 #include <stdio.h> int main() { int a, b, t; printf("input a,b: "); scanf(...
Read more
beego框架开发的博客系统
2020-03-03
HeartBlog 👉GitHubbuilding 采用技术 前台页面:模板语法 后台页面:layui 数据库:mysql 主框架:beego 介绍 HearBlog设计简洁,界面美观(早期审美),部署简单,自动建表, mysql数据...
Read more
上一页