-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcb.en.u4cys22032.2.fprg
63 lines (63 loc) · 3.56 KB
/
cb.en.u4cys22032.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="hansi"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-10-28 09:49:35 PM"/>
<attribute name="created" value="aGFuc2k7SEFOU0lDQTsyMDIyLTEwLTI4OzA5OjExOjQ1IFBNOzIzMTU="/>
<attribute name="edited" value="aGFuc2k7SEFOU0lDQTsyMDIyLTEwLTI4OzA5OjQ5OjM1IFBNOzI7MjQzNA=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="rollno" type="String" array="False" size=""/>
<output expression=""roll no"" newline="True"/>
<input variable="rollno"/>
<declare name="name" type="String" array="False" size=""/>
<output expression=""name"" newline="True"/>
<input variable="name"/>
<declare name="address" type="String" array="False" size=""/>
<output expression=""address"" newline="True"/>
<input variable="address"/>
<declare name="bloodgroup" type="String" array="False" size=""/>
<output expression=""blood group"" newline="True"/>
<input variable="bloodgroup"/>
<declare name="phoneno" type="Integer" array="False" size=""/>
<output expression=""phone number"" newline="True"/>
<input variable="phoneno"/>
<declare name="departmentassigned" type="String" array="False" size=""/>
<output expression=""department assigned"" newline="True"/>
<input variable="departmentassigned"/>
<declare name="semester" type="Integer" array="False" size=""/>
<output expression=""semester"" newline="True"/>
<input variable="semester"/>
<declare name="subjectcode1" type="String" array="False" size=""/>
<output expression=""subject code 1"" newline="True"/>
<input variable="subjectcode1"/>
<declare name="subjectcode2" type="String" array="False" size=""/>
<output expression=""subject code 2"" newline="True"/>
<input variable="subjectcode2"/>
<declare name="subjectcode3" type="String" array="False" size=""/>
<output expression=""subject code 3"" newline="True"/>
<input variable="subjectcode3"/>
<declare name="marks1" type="Integer" array="False" size=""/>
<output expression=""marks 1"" newline="True"/>
<input variable="marks1"/>
<declare name="marks2" type="Integer" array="False" size=""/>
<output expression=""marks 2"" newline="True"/>
<input variable="marks2"/>
<declare name="marks3" type="Integer" array="False" size=""/>
<output expression=""marks 3"" newline="True"/>
<input variable="marks3"/>
<declare name="total" type="Real" array="False" size=""/>
<assign variable="total" expression="marks1+marks2+marks3"/>
<output expression=""total"" newline="True"/>
<output expression="total" newline="True"/>
<declare name="average" type="Real" array="False" size=""/>
<assign variable="average" expression="total/3"/>
<output expression=""average"" newline="True"/>
<output expression="average" newline="True"/>
</body>
</function>
</flowgorithm>