概述
一、运行结果
二、代码示例
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>算术运算符的使用</title>
<style type="text/css">
body{
font-family:楷体;
font-size:24px;
}
</style>
</head>
<body>
<script type="text/javascript">
var x=11,y=5,z=8;
document.write("x=11;y=5;z=8");
document.write("<br>");
document.write("y++的值为:",y++);
document.write("<br>");
document.write("z--的值为:",z--);
document.write("<br>");
document.write("++z的值为:",++z);
document.write("<br>");
document.write("++y的值为:",++y);
document.write("<br>");
document.write("--z的值为:",--z);
document.write("<br>");
document.write("--y的值为:",--y);
document.write("<br>");
document.write("--x的值为:",--x);
document.write("<br>");
document.write("x++的值为:",x++);
document.write("<br>");
</script>
</body>
</html>
最后
以上就是犹豫往事为你收集整理的算术运算符的使用(JavaScript)的全部内容,希望文章能够帮你解决算术运算符的使用(JavaScript)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复