码迷,mamicode.com
首页 >  
搜索关键字:high item check    ( 24079个结果
(STM32) Internal Flash Access
Introdution STM32Fxxx 系列的MCU, 似乎有分類成 low-, medium-, high-, XL-density 4種不同Flash大小的產品。 個人是常常忘記所以在此筆記。 Flash : 通常放置程式碼, const常數變數, 掉電資料不消失。 存取速度較慢 RAM : ...
分类:数据库   时间:2021-02-18 13:22:05    阅读次数:0
第一阶段英语单词总结
一、Abbreviation 缩写 0、 RTM requirement trace matrix 需求跟踪距阵 1、 SRS software requirement specification 软件需求规格说明书 2、 HLD high level design 概要设计 3、 LLD low ...
分类:其他好文   时间:2021-02-17 14:52:17    阅读次数:0
1077 Kuchiguse (20 分)
一眼二分。 注意点: 在读入n之后要使用getchar接收后面的换行符,否则会使for循环内的getline读入这个换行符,导致第一个字符串读取错误。 最后输出答案前要先check一遍 const int N=110; string a[N]; string suffix; int n; bool ...
分类:其他好文   时间:2021-02-17 14:18:36    阅读次数:0
Markdown Test
Markdown # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 ### Duplicate Header ### Duplicate Header H1 H2 H3 H4 H5 H6 Duplicate Header Duplicate Header Pa ...
分类:其他好文   时间:2021-02-17 14:15:02    阅读次数:0
完数与盈数
试除法求约数。 int check(int n) { int res=1; for(int i=2;i*i<=n;i++) if(n % i == 0) { res+=i; if(i != n/i) res+=n/i; } return res; } int main() { vector<int> ...
分类:其他好文   时间:2021-02-17 14:12:57    阅读次数:0
Flask入门
1. 创建flask框架主程序 名字可以是app.py/run.py/main.py/index.py from flask import Flask app = Flask(__name__) @app.route('/') def index(): return 'Hello World' if ...
分类:其他好文   时间:2021-02-17 14:07:44    阅读次数:0
HelloWorld!
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); }} 编译javac jav ...
分类:其他好文   时间:2021-02-16 12:44:13    阅读次数:0
markdown学习
Markdown学习 标题 #+空格 一级标题 ##+空格 二级标题 ………… 字体 hello,world hello,world hello,world hello,world 引用 >+…… 恭喜你发财,money bag交出来 分割线 三道杠/三个星 图片 !+[]+(图片路径) 本地/网络 ...
分类:其他好文   时间:2021-02-16 12:38:07    阅读次数:0
git02-暂存区和工作区
工作区: 就是git仓库的目录就属于工作区 [root@node4 git]# pwd/git[root@node4 git]# lsreadme.txt[root@node4 git]# ls -a. .. .git readme.txt[root@node4 git]# cd .git/[roo ...
分类:其他好文   时间:2021-02-16 12:34:56    阅读次数:0
简单介绍基于PostgreSql 别名区分大小写的问题
这篇文章主要介绍了基于PostgreSql 别名区分大小写的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧 PostgreSql是区分大小写的 如果别名的大小不一致就会提示错误: SELECT * FROM ( SELECT cpi."product_item_id" "PRO ...
分类:数据库   时间:2021-02-16 12:29:35    阅读次数:0
24079条   上一页 1 ... 29 30 31 32 33 ... 2408 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!