主题:一段产生随机数的代码
一段产生随机数的代码
相关网站:http://edu.teamsourcing.com.cn
一段产生随机数的代码: 种子是0EDB88320h
#include "stdio.h"
int PassAarry[0x100];
void main()
{
__asm
{
xor ecx,ecx
L1:
push 8
mov eax,ecx
pop edx
L2:
test al,1
jz short L3
shr eax,1
xor eax,0EDB88320h
jmp short L4
L3:
shr eax,1
L4:
dec edx
jnz short L2
mov PassAarry[ecx * 4],eax
inc ecx
cmp ecx,100h
jl short L1
}
}
相关网站:http://edu.teamsourcing.com.cn
相关网站:http://edu.teamsourcing.com.cn
一段产生随机数的代码: 种子是0EDB88320h
#include "stdio.h"
int PassAarry[0x100];
void main()
{
__asm
{
xor ecx,ecx
L1:
push 8
mov eax,ecx
pop edx
L2:
test al,1
jz short L3
shr eax,1
xor eax,0EDB88320h
jmp short L4
L3:
shr eax,1
L4:
dec edx
jnz short L2
mov PassAarry[ecx * 4],eax
inc ecx
cmp ecx,100h
jl short L1
}
}
相关网站:http://edu.teamsourcing.com.cn