-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path28-10-2022 prblm 2.fprg
45 lines (45 loc) · 2.38 KB
/
28-10-2022 prblm 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="user"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-10-28 10:09:06 AM"/>
<attribute name="created" value="dXNlcjtMQVBUT1AtTjhPMDczOTE7MjAyMi0xMC0yODswOToyOTozNCBBTTsyNzAy"/>
<attribute name="edited" value="dXNlcjtMQVBUT1AtTjhPMDczOTE7MjAyMi0xMC0yODsxMDowOTowNiBBTTsyOzI4MDA="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="a" type="Integer" array="False" size=""/>
<output expression=""enter the roll no"" newline="True"/>
<input variable="a"/>
<declare name="b" type="Integer" array="False" size=""/>
<output expression=""enter the sem"" newline="True"/>
<input variable="b"/>
<declare name="c" type="String" array="False" size=""/>
<output expression=""enter the sub_code"" newline="True"/>
<input variable="c"/>
<declare name="d" type="Integer" array="False" size=""/>
<output expression=""enter the no of sub"" newline="True"/>
<input variable="d"/>
<declare name="e" type="Integer" array="False" size=""/>
<output expression=""enter the mark of chemistry"" newline="True"/>
<input variable="e"/>
<declare name="f" type="Integer" array="False" size=""/>
<output expression=""enter the mark of physics"" newline="True"/>
<input variable="f"/>
<declare name="g" type="Integer" array="False" size=""/>
<output expression=""enter the mark of maths"" newline="True"/>
<input variable="g"/>
<declare name="h" type="Integer" array="False" size=""/>
<assign variable="h" expression="e+f+g"/>
<output expression=""total="" newline="True"/>
<output expression="h" newline="True"/>
<declare name="i" type="Real" array="False" size=""/>
<assign variable="i" expression="h/d"/>
<output expression=""average="" newline="True"/>
<output expression="i" newline="True"/>
</body>
</function>
</flowgorithm>