-
Notifications
You must be signed in to change notification settings - Fork 0
/
CB.EN.U4CYS22017(MODULUS).fprg
29 lines (29 loc) · 1.59 KB
/
CB.EN.U4CYS22017(MODULUS).fprg
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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="CB.EN.U4CYS22017"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-11-04 10:53:32 AM"/>
<attribute name="created" value="Q0IuRU4uVTRDWVMyMjAxNzsyMDIyMjNNQVlDMDA1NDsyMDIyLTExLTA0OzEwOjQzOjI4IEFNOzMwNTc="/>
<attribute name="edited" value="Q0IuRU4uVTRDWVMyMjAxNzsyMDIyMjNNQVlDMDA1NDsyMDIyLTExLTA0OzEwOjUzOjMyIEFNOzI7MzE2Mg=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="dividend" type="Integer" array="False" size=""/>
<output expression=""enter the number to dividend"" newline="True"/>
<input variable="dividend"/>
<declare name="divisor" type="Integer" array="False" size=""/>
<output expression=""enetr the number to be divisor"" newline="True"/>
<input variable="divisor"/>
<declare name="quotient" type="Integer" array="False" size=""/>
<output expression=""enter the number to be quotient"" newline="True"/>
<input variable="quotient"/>
<assign variable="quotient" expression="dividend/divisor"/>
<declare name="modulus" type="Integer" array="False" size=""/>
<assign variable="modulus" expression="quotient*(dividend/divisor)"/>
<output expression=""the modulud is"&modulus" newline="True"/>
</body>
</function>
</flowgorithm>