< Ada Programming < Delimiters 
 
 
      
Ada. Time-tested, safe and secure.
Operator
Standard Operations
Arithmetic Power of
The "**" operator is defined as arithmetic power of for all numeric types.
function"**" (Left : T; Right : Integer)returnT;
Usage
A :constantFloat := 5.0 ** 2; -- A is now 25.0 B :constantInteger := 5 ** 2; -- B is also 25
Working Example
withAda.Text_IO;procedureOperator_PowerisA :constantFloat := 5.0 ** 2; -- A is now 25.0 B :constantInteger := 5 ** 2; -- B is also 25packageT_IOrenamesAda.Text_IO;packageF_IOisnewAda.Text_IO.Float_IO (Float);packageI_IOisnewAda.Text_IO.Integer_IO (Integer);beginT_IO.Put ("A = "); F_IO.Put ( Item => A, Fore => 3, Aft => 1, Exp => 0); T_IO.New_Line; T_IO.Put ("B = "); I_IO.Put ( Item => B, Width => 3, Base => 10); T_IO.New_Line;endOperator_Power;
See also
Wikibook
Ada 95 Reference Manual
Ada 2005 Reference Manual
| Ada Operators | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 
 | 
    This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.