码迷,mamicode.com
首页 >  
搜索关键字:abs    ( 5660个结果
Memos_simulink_ABS_Example
The second setting that will be mentioned here is the checkbox ( 3 in Figure 6) that determines the relationship between the time step set on the Run ...
分类:其他好文   时间:2017-09-13 00:23:09    阅读次数:136
条件、循环、函数定义 练习
1. import turtleturtle.color('yellow')turtle.fillcolor('yellow')turtle.begin_fill()for i in range(5): turtle.forward(100) turtle.right(144)turtle.end_ ...
分类:其他好文   时间:2017-09-12 23:08:12    阅读次数:240
Day-8: 面对对象编程
面对过程的程序设计方法意在将函数分成子函数,再依次调用这些函数来解决问题。 而面对对象的程序设计方法,来源于自然界,类是实例的抽象,实例是类的具体。自定义出来的对象是类,而所有的数据都可以看成是对象,因此解决问题的方法是靠对象自己处理消息和相互传递消息。使用时,首先考虑的是需要创建什么样的对象,对象 ...
分类:其他好文   时间:2017-09-12 22:01:32    阅读次数:124
移动端适配之rem 笔记
rem顾名思义就是root element,这个是一个相对的单位,与em的差别在于rem相对的是根节点html的font-size,em相对的是父元素font-size。使用rem其实是用媒体查询修来改html的font-size,那么使用rem的元素的大小也会相应的改变,所以我们只要写一份css就 ...
分类:移动开发   时间:2017-09-12 16:17:29    阅读次数:315
条件,循环,函数定义,练习
1太阳花 from turtle import*color('yellow','yellow')begin_fill()while True: forward(100) left(170) if(abs(pos()))<1: breakend_fill()done() ...
分类:其他好文   时间:2017-09-12 13:43:19    阅读次数:125
Netbeans rcp中获得本地文件系统路径
通过file协议 —————————————————————————————————————————————————————— URL url = new URL("file:///E:/AutoTest.exe"); File file1 = Utilities.toFile(url.toURI( ...
分类:Web程序   时间:2017-09-12 12:04:07    阅读次数:183
条件、循环、函数定义练习
1、画五角星 import turtleturtle.color('yellow')turtle.bgcolor('red')turtle.begin_fill()for i in range(5):turtle.forward(100)turtle.right(144)turtle.end_fil ...
分类:其他好文   时间:2017-09-12 10:41:14    阅读次数:120
[BZOJ1575] [Usaco2009 Jan]气象牛Baric(DP)
传送门 DP f[i][j]表示前i个中选j个的最优解 预处理g[i][j]表示选i~j对答案的贡献 那么就可以n^3乱搞了! 注意边界 ...
分类:其他好文   时间:2017-09-12 09:52:06    阅读次数:121
模拟实现ATM+购物商城程序
流程图: 需求: ../module2-ATM ├── ATM流程图.png #流畅图 ├── bin #atm执行程序目录 │ ├── ATM_start.py │ └── __init__.py ├── db #数据库目录 │ ├── __init__.py │ ├── shopping_car ...
分类:其他好文   时间:2017-09-11 15:11:50    阅读次数:194
完全居中
position: absolute; top: 0; height: 100%; width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; position: abs ...
分类:其他好文   时间:2017-09-11 10:05:32    阅读次数:140
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!