码迷,mamicode.com
首页 >  
搜索关键字:ends-with    ( 262个结果
实验三 编程、编译、连接、跟踪
四.实验结论 练习一: (1)编写汇编程序: assume cs:codecode segment mov ah,2 mov dl,6 add al,30h int 21h mov ah,2 mov dl,5 add dl,30 int 21h mov ah,4ch int 21hcode ends ...
分类:其他好文   时间:2018-11-18 21:08:44    阅读次数:156
汇编语言 第四章 第一个程序
1、首先我们写一段简单的汇编语言源程序 assume cs:code code segment mov ax,0123h mov bx,0456h add ax,bx add ax,ax mov ax,4c00h int21h code ends end 那么该程序中出现了什么呢 (1)伪指令 1) ...
分类:编程语言   时间:2018-11-17 16:16:04    阅读次数:216
POJ-1703-Find them, Catch them(并查集分类)
Description The police office in Tadu City decides to say ends to the chaos, as launch actions to root up the TWO gangs in the city, Gang Dragon and G ...
分类:其他好文   时间:2018-11-14 16:37:31    阅读次数:165
汇编语言程序设计第四章
4.1 一个源程序从写出到执行的过程:1编写汇编源程序 2对源程序进行编译连接 3执行可执行文件中的程序。 4.2 (1)伪指令:没有对应的机器码的指令,最终不被CPU所执行。 segment和ends是一对成对使用的伪指令。 格式为:段名 segment ............ 段名 ends ...
分类:编程语言   时间:2018-11-13 02:26:58    阅读次数:163
编写一个子程序:将包含任意字符,以0结尾的字符串中的小写字母转变成大写字母
assume cs:code,ds:data data segment db 'Beginners All-purpose Symbolic Instruction Code.',0 data ends code segment begin: mov ax,data mov ds,ax mov si... ...
分类:其他好文   时间:2018-11-12 13:53:59    阅读次数:713
CodeForces 1059C
Description Let's call the following process a transformation of a sequence of length nn . If the sequence is empty, the process ends. Otherwise, appe ...
分类:其他好文   时间:2018-10-07 22:31:52    阅读次数:188
Vim 基本操作
Vim 基本操作 vim的模式 编辑 移动光标 复制 删除 查找 / : 查找 n 查找下一个 N 查找上一个 ? : 查找 n 查找下一个 N 查找上一个 替换 :start , ends/old/new/ : 从start到end的每一行的第一个old替换成new :start , ends/o ...
分类:系统相关   时间:2018-10-01 23:46:33    阅读次数:231
657. Robot Return to Origin
There is a robot starting at position (0, 0), the origin, on a 2D plane. Given a sequence of its moves, judge if this robot ends up at (0, 0) after it ...
分类:其他好文   时间:2018-10-01 11:53:24    阅读次数:207
Python——字符串操作方法
captlze 首字母大写 upper() 全大写 lower() 全小写 find 通过元素找索引,找不到-1 index()通过元素找索引,找不到报错 swpease 大小写翻转 repalce(old,new,count)替换 isdigit() 返回bool值 startswith ends ...
分类:编程语言   时间:2018-09-13 16:19:29    阅读次数:205
L - Father Christmas flymouse
来源poj3160 After retirement as contestant from WHU ACM Team, flymouse volunteered to do the odds and ends such as cleaning out the computer lab for tra ...
分类:其他好文   时间:2018-08-10 13:10:51    阅读次数:167
262条   上一页 1 ... 5 6 7 8 9 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!