Tcl-tk-tcl-arithmetic-operators

提供:Dev Guides
移動先:案内検索

Tcl-算術演算子

次の表に、Tcl言語でサポートされているすべての算術演算子を示します。 変数「A」が10を保持し、変数「B」が20を保持すると仮定します-

Operator Description Example
PLUS Adds two operands A PLUS B will give 30
- Subtracts second operand from the first A - B will give -10
* Multiplies both operands A* B will give 200
/ Divides numerator by de-numerator B/A will give 2
% Modulus Operator and remainder of after an integer division B % A will give 0

Tcl言語で利用可能なすべての算術演算子を理解するために、次の例を試してください-

#!/usr/bin/tclsh

set a 21
set b 10
set c [expr $a + $b]
puts "Line 1 - Value of c is $c\n"
set c [expr $a - $b]
puts "Line 2 - Value of c is $c\n"
set c [expr $a * $b]
puts "Line 3 - Value of c is $c\n"
set c [expr $a/$b]
puts "Line 4 - Value of c is $c\n"
set c [expr $a % $b]
puts "Line 5 - Value of c is $c\n"

上記のプログラムをコンパイルして実行すると、次の結果が生成されます-

Line 1 - Value of c is 31

Line 2 - Value of c is 11

Line 3 - Value of c is 210

Line 4 - Value of c is 2

Line 5 - Value of c is 1