a % b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Bot: Reverted to revision 90903 by SilentSpike_bi_wiki on 2015-07-21T13:55:12Z)
m (Some wiki formatting)
 
(48 intermediate revisions by 3 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


| Remainder of '''a''' divided by '''b'''. |= Description
|game2= ofpe
____________________________________________________________________________________________
|version2= 1.00


| a '''%''' b |= Syntax
|game3= arma1
|version3= 1.00


|p1= a: [[Number]] |=
|game4= arma2
|version4= 1.00


|p2= b: [[Number]] |=
|game5= arma2oa
|version5= 1.50


| [[Number]] |= Return value
|game6= tkoh
____________________________________________________________________________________________
|version6= 1.00


|x1= <pre>4.5 % 3</pre>
|game7= arma3
|version7= 0.50


Result is 1.5 |=
|gr1= Math


| [[mod]], [[Operators]] |= See also
|descr= Remainder of ''a'' divided by ''b''.


|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.99|#]]
[[Category:Scripting Commands OFP 1.96|#]]
[[Category:Scripting Commands OFP 1.46|#]]
[[Category:Scripting Commands ArmA|#]]
[[Category:Scripting Commands ArmA2|#]]
[[Category:Scripting Commands Arma 3|#]]
[[Category:Command_Group:_Math|#]]
[[Category:Command_Group:_Variables|#]]

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