js变量减法 <script> var a = 20; var b = 8; var c = a - b; document.write(a - b); document.write(c); </script>