码迷,mamicode.com
首页 > 其他好文 > 详细

tcl脚本学习五:基本运算

时间:2016-08-02 23:57:20      阅读:993      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!