Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Arithmetic-Integer/XSLT/arithmetic-integer.xslt
Normal file
9
Task/Arithmetic-Integer/XSLT/arithmetic-integer.xslt
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<xsl:template name="arithmetic">
|
||||
<xsl:param name="a">5</xsl:param>
|
||||
<xsl:param name="b">2</xsl:param>
|
||||
<fo:block>a + b = <xsl:value-of select="$a + $b"/></fo:block>
|
||||
<fo:block>a - b = <xsl:value-of select="$a - $b"/></fo:block>
|
||||
<fo:block>a * b = <xsl:value-of select="$a * $b"/></fo:block>
|
||||
<fo:block>a / b = <xsl:value-of select="round($a div $b)"/></fo:block>
|
||||
<fo:block>a mod b = <xsl:value-of select="$a mod $b"/></fo:block>
|
||||
</xsl:template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue