-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathdivide.xml
More file actions
executable file
·57 lines (36 loc) · 1.04 KB
/
Copy pathdivide.xml
File metadata and controls
executable file
·57 lines (36 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>/ (divide)</name>
<category>Math</category>
<subcategory>Operators</subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
int g = 50 / 5; // Assigns 10 to 'g'
int h = g / 5; // Assigns 2 to 'h'
]]></code>
</example>
<description><![CDATA[
Divides the value of the first parameter by the value of the second parameter. The answer to the equation 20 / 4 is 5. The number 20 is the sum of four occurences of the number 5. As an equation we see that 5 + 5 + 5 + 5 = 20.
]]></description>
<syntax>
<c>value1</c> / <c>value2</c>
</syntax>
<parameter>
<label>value1</label>
<description><![CDATA[int or float]]></description>
</parameter>
<parameter>
<label>value2</label>
<description><![CDATA[int or float, but not zero (it is not possible divide by zero)]]></description>
</parameter>
<returns></returns>
<related>
* (multiply)
% (modulo)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>