📄 tu1.14.htm
字号:
<HTML>
<HEAD>
<TITLE>位运算符</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
var a=4;
var b=7;
var c=2;
document.write("a=4(0100), b=7(0111), c=2<P>");
document.write("a&b = "); document.write(a&b); document.write("<BR>");
document.write("a|b = "); document.write(a|b); document.write("<BR>");
document.write("a^b = "); document.write(a^b); document.write("<BR>");
document.write("a<<c = "); document.write(a<<c); document.write("<BR>");
document.write("a>>c = "); document.write(a>>c); document.write("<BR>");
document.write("a>>>c = "); document.write(a>>>c); document.write("<BR>");
document.write("b>>>c = "); document.write(b>>>c);
// -->
</SCRIPT>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -