3 lines
167 B
Text
3 lines
167 B
Text
OutText("5** 3 **2: "); OutInt(5** 3 **2, 0); Outimage;
|
|
OutText("(5**3)**2: "); OutInt((5**3)**2, 0); Outimage;
|
|
OutText("5**(3**2): "); OutInt(5**(3**2), 0); Outimage
|