题目链接:
点我点我
题目:
ChiBi
Time Limit: 5 Seconds Memory Limit: 32768 KB
watashi's mm is so pretty as well as smart. Recently, she has watched the movie Chibi. So she knows more about the...
分类:
其他好文 时间:
2014-07-10 22:27:00
阅读次数:
262
疯狂的暑假学习之 汇编入门学习笔记 (七)—— dp,div,dup
参考: 《汇编语言》 王爽 第8章
1. bx、si、di、和 bp
8086CPU只有4个寄存器可以用 “[...]” 中进行单元寻址。
bp:除了默认的段地址是ss,其他与bx一样。
它们所有正确的组合
mov ax,[bx]
mov ax,[si]
mov ax,[di]
mov ax,[dp]
mov ax,[bx+si]
mov ax,[bx+di]
mov ax,[bp+si]
mov ax,[bp+di]
mo...
分类:
其他好文 时间:
2014-07-10 22:15:57
阅读次数:
356
AudioServices
Jump to:
navigation,
search
AudioServices is a group of C functions in
AudioToolbox for playing short (≤30 seconds) sounds.
Predefined sounds
There are some predefined system s...
分类:
移动开发 时间:
2014-07-10 17:29:49
阅读次数:
396
1.public class Singleton { private static class SingletonHolder { public static Singleton resource = new Singleton(); public static Si...
分类:
编程语言 时间:
2014-07-09 18:20:20
阅读次数:
190
$(function(){ serviceHeight(); $('#seconds').hide(); inputFocus();/*开始接受订单*/$('.btn_order').click(function(){ if( !$(this).hasClass('btn_s...
分类:
Web程序 时间:
2014-07-09 17:41:51
阅读次数:
238
CPU构成典型的cpu有运算器,控制器,寄存器 等器件组成。这些器件靠内部总线相连寄存器寄存器是cpu内的组成部分。寄存器是有限存贮容量的高速存贮部件,它们可用来暂存指令、数据和地址8086CPU有14 个寄存器 AX , BX, CX, DX, SI, DI, SP, BP, IP, CS , S...
分类:
编程语言 时间:
2014-07-09 16:35:49
阅读次数:
308
Problem D
Prince and Princess
Input: Standard Input
Output: Standard Output
Time Limit: 3 Seconds
In an n x n chessboard, Prince and Princess plays a game. The squares in the chessboard are ...
分类:
其他好文 时间:
2014-07-09 11:44:54
阅读次数:
211
3882 - And Then There Was One
Time limit: 3.000 seconds
Let's play a stone removing game.
Initially, n stones are arranged on a circle and numbered
1,..., n clockwise (Figure 1). You are also...
分类:
其他好文 时间:
2014-07-09 10:00:13
阅读次数:
172
模拟赛链接A 第一个水题要知道units digit的意思 (个位数)有一点点小繁琐。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 #defin...
分类:
其他好文 时间:
2014-07-09 00:55:55
阅读次数:
317
汇编考完了,悲剧的93分,,,,,以后的汇编就用的少了,凡是用到都来这里做点代码笔记:
一、错误总结:
1、程序最后END +起始标号,否则U的时候需要自己手动找起始位置而且有可能程序翻译指令错误
2、对内存单元进行操作的时候,注意类型的指定,比如inc [si]必然是错的因为没有类型,还有处理数据计数器si注意加一
3、凡...
分类:
其他好文 时间:
2014-07-08 16:19:40
阅读次数:
124