a % b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "_{10,} " to "")
m (Some wiki formatting)
 
(29 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command


| ofp |Game Name=
|sortKey= #


|1.00|Game Version=
|game1= ofp
|version1= 1.00


|gr1= Math |GROUP1=
|game2= ofpe
|version2= 1.00


| Remainder of '''a''' divided by '''b'''. |DESCRIPTION=
|game3= arma1
|version3= 1.00


| a [[a_%25_b|%]] b |SYNTAX=
|game4= arma2
|version4= 1.00


|p1= a: [[Number]] |Parameter 1=
|game5= arma2oa
|version5= 1.50


|p2= b: [[Number]] |Parameter 2=
|game6= tkoh
|version6= 1.00


| [[Number]] |RETURNVALUE=
|game7= arma3
|version7= 0.50


|x1= <code>4.5 % 3</code> |Example 1=
|gr1= Math


Result is 1.5 |Result=
|descr= Remainder of ''a'' divided by ''b''.


| [[mod]], [[Operators]] |SEEALSO=
|alias= [[mod]]
 
|s1= a [[a % b|%]] b
 
|p1= a: [[Number]]
 
|p2= b: [[Number]]
 
|r1= [[Number]]
 
|x1= <sqf>4.5 % 3 // result is 1.5</sqf>
 
|seealso= [[mod]] [[Operators]]
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<!-- Note Section BEGIN -->
|user= Hoz
<dl class="command_description">
|timestamp= 20060416013400
<dd class="notedate">Posted on 01:34, 16 April 2006</dd>
|text= <nowiki/>
<dt class="note">[[User:Hoz|Hoz]]</dt>
<dd class="note">
* Remainder is calculated in real domain.
* Remainder is calculated in real domain.
* [[a % b]] is identical to [[mod]]
* [[a % b]] is identical to [[mod]]
You can use % to round a decimal number down to the nearest whole number. For example: If you wanted to use the command random to generate a whole number between 0 and 5, you could put this in a script:  
You can use % to round a decimal number down to the nearest whole number. For example: If you wanted to use the command random to generate a whole number between 0 and 5, you could put this in a script:  
<code>_rand = [[random]] 6;
<sqf>
_rand = random 6;
_num = _rand - (_rand % 1);
_num = _rand - (_rand % 1);
</code>
</sqf>
In A1, the new commands [[round]], [[floor]] or [[ceil]] would be the easier way to round.
In A1, the new commands [[round]], [[floor]] or [[ceil]] would be the easier way to round.
</dd>
}}
</dl>
<!-- Note Section END -->
 
<h3 style="display:none">Bottom Section</h3>
 


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= SilentSpike
<dd class="notedate">Posted on July 21, 2015 - 14:55 (UTC)</dd>
|timestamp= 20150721145500
<dt class="note">[[User:SilentSpike|SilentSpike]]</dt>
|text= Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence:
<dd class="note">
<sqf>
Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence:
-12 % -10 = -2
<code>-12 % -10 = -2
-12 %  10 = -2
-12 %  10 = -2
  12 % -10 =  2
  12 % -10 =  2
  12 %  10 =  2</code>
  12 %  10 =  2
</dd>
</sqf>
</dl>
}}
<!-- DISCONTINUE Notes -->
 
 
[[Category:Scripting Commands|#]]
[[Category:Scripting Commands OFP 1.46|#]]
[[Category:Scripting Commands OFP 1.96|#]]
[[Category:Scripting Commands OFP 1.99|#]]
{{GameCategory|arma1|Scripting Commands|sortKey=#}}
{{GameCategory|arma2|Scripting Commands|sortKey=#}}
{{GameCategory|arma3|Scripting Commands|sortKey=#}}
{{GameCategory|tkoh|Scripting Commands|sortKey=#}}

Latest revision as of 09:44, 13 May 2022

Hover & click on the images for description

Description

Description:
Remainder of a divided by b.
Alias:
mod
Groups:
Math

Syntax

Syntax:
a % b
Parameters:
a: Number
b: Number
Return Value:
Number

Examples

Example 1:
4.5 % 3 // result is 1.5

Additional Information

See also:
mod Operators

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Hoz - c
Posted on Apr 16, 2006 - 01:34 (UTC)
  • Remainder is calculated in real domain.
  • a % b is identical to mod
You can use % to round a decimal number down to the nearest whole number. For example: If you wanted to use the command random to generate a whole number between 0 and 5, you could put this in a script:
_rand = random 6; _num = _rand - (_rand % 1);
In A1, the new commands round, floor or ceil would be the easier way to round.
SilentSpike - c
Posted on Jul 21, 2015 - 14:55 (UTC)
Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence:
-12 % -10 = -2 -12 % 10 = -2 12 % -10 = 2 12 % 10 = 2