首页 > 其他 > 详细

tcl脚本学习五:基本运算

时间:2016-08-02 23:55:40      阅读:420      评论:0      收藏:0      [点我收藏+]

lesson 5 :基本数学计算

1. set X 100;
set Y 256;
set Z [expr "$Y + $X"]
//亦可以写成 set Z [expr {$Y +$X}]


2. set Z_LABEL "$Y plus $X is "
puts "$Z_LABEL $Z"
puts "The square root of $Y is [expr sqrt($Y)]\n"
//求开方的算式 expr 外面一般要带上[]作为返回值

3.puts "Because of the precedence rules \"5 + -3 * 4\" is: [expr -3 * 4 + 5]"
puts "Because of the parentheses \"(5 + -3) * 4\" is: [expr (5 + -3) * 4]"
//基本的运算规则
puts "\n................. more examples of differences between \" and \{"
puts {$Z_LABEL [expr $Y + $X]}
puts "$Z_LABEL {[expr $Y + $X]}"
puts "The command to add two numbers is: \[expr \$a + \$b]"
//括号连用的例子

tcl脚本学习五:基本运算

原文:http://www.cnblogs.com/gold-life/p/5731123.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!