本文目录一览:
- 1、什么数字与黑客有关?为什么?急急急
- 2、问一下电脑高手的进,就是黑客帝国那个电影一开始的那个动画就是一串数字0-9后面是黑的,字是蓝的是什么
- 3、求"黑客帝国"里电脑屏幕上的"代码"不间断滚动的代码,
什么数字与黑客有关?为什么?急急急
二进制数的转换与数学有关,编程与数学有关,解密与数学有关,加密有数学有关,但是你问我为什么,我也不知道如何回答你,如果计算机不与数学有关,就不存在计算机,黑客需要学编程破解,所以遇到数学的问题~
数学和黑客关系确实很深,至于为什么,就去问问黑客学了什么!反正就这么绕着,你自己想吧,为什么把!
问一下电脑高手的进,就是黑客帝国那个电影一开始的那个动画就是一串数字0-9后面是黑的,字是蓝的是什么
前面不是有段只有0和1的屏幕么,那0-1就是二进制编码,由于在计算机中处理问题都是转换成二进制处理的,后面出现的0-9啊,还有其他的一些符号啊就和楼上的一样了,而黑客帝国中的Matrix就是一个巨大的 *** ,也就和二进制,编程啊脱不了关系,那个黑色的背景个人认为就是命令提示符,就是“黑窗口”
ps:字是绿色的,呵呵
求"黑客帝国"里电脑屏幕上的"代码"不间断滚动的代码,
把下面复制到记事本,另存为HTML文件。你可以自己DIY一下。
html
head
title类似黑客帝国的01数字流/title
/head
body bgcolor=#000000
script language="JavaScript"
!--
if (document.all){
Cols=6;
Cl=24;//Space's are included so real length is 48!
Cs=10;
Ts=10;
Tc='#008800';
Tc1='#00ff00';
MnS=20;
MxS=30;
I=Cs;
Sp=new Array();S=new Array();Y=new Array();
C=new Array();M=new Array();B=new Array();
RC=new Array();E=new Array();Tcc=new Array(0,1);
document.write("div id='Container' style='position:absolute;top:0;left:-"+Cs+"'");
document.write("div style='position:relative'");
for(i=0; i Cols; i++){
S[i]=I+=Cs;
document.write("div id='A' style='position:absolute;top:0;font-family:Arial;font-size:"
+Ts+"px;left:"+S[i]+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden'/div");
}
document.write("/div/div");
for(j=0; j Cols; j++){
RC[j]=1+Math.round(Math.random()*Cl);
Y[j]=0;
Sp[j]=Math.round(MnS+Math.random()*MxS);
for(i=0; i RC[j]; i++){
B[i]='';
C[i]=Math.round(Math.random()*1)+' ';
M[j]=B[0]+=C[i];
}
}
function Cycle(){
Container.style.top=window.document.body.scrollTop;
for (i=0; i Cols; i++){
var r = Math.floor(Math.random()*Tcc.length);
E[i] = 'font color='+Tc1+''+Tcc[r]+'/font';
Y[i]+=Sp[i];
if (Y[i] window.document.body.clientHeight){
for(i2=0; i2 Cols; i2++){
RC[i2]=1+Math.round(Math.random()*Cl);
for(i3=0; i3 RC[i2]; i3++){
B[i3]='';
C[i3]=Math.round(Math.random()*1)+' ';
C[Math.floor(Math.random()*i2)]=' '+' ';
M[i]=B[0]+=C[i3];
Y[i]=-Ts*M[i].length/1.5;
A[i].style.visibility='visible';
}
Sp[i]=Math.round(MnS+Math.random()*MxS);
}
}
A[i].style.top=Y[i];
A[i].innerHTML=M[i]+' '+E[i]+' ';
}
setTimeout('Cycle()',20)
}
Cycle();
}
// --
/script
body
/body
/html