-
Notifications
You must be signed in to change notification settings - Fork 0
/
cb.en.u4cys22017b.fprg
70 lines (70 loc) · 4.41 KB
/
cb.en.u4cys22017b.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
64
65
66
67
68
69
70
<?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 08:21:28 PM"/>
<attribute name="created" value="aGFuc2k7SEFOU0lDQTsyMDIyLTEwLTI4OzA3OjQ4OjUxIFBNOzIzMjA="/>
<attribute name="edited" value="aGFuc2k7SEFOU0lDQTsyMDIyLTEwLTI4OzA4OjIxOjI4IFBNOzI7MjQyNQ=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="rollno" type="String" array="False" size=""/>
<output expression=""string rollno"" newline="True"/>
<input variable="rollno"/>
<declare name="name" type="String" array="False" size=""/>
<output expression=""enter name"" newline="True"/>
<input variable="name"/>
<declare name="address" type="String" array="False" size=""/>
<output expression=""enter address"" newline="True"/>
<input variable="address"/>
<declare name="bloodgroup" type="String" array="False" size=""/>
<output expression=""enter bloodgroup"" newline="True"/>
<input variable="bloodgroup"/>
<declare name="phonenumber" type="Integer" array="False" size=""/>
<output expression=""enter phonenumber"" newline="True"/>
<input variable="phonenumber"/>
<declare name="departmentassigned" type="String" array="False" size=""/>
<output expression=""enter departmentassigned"" newline="True"/>
<input variable="departmentassigned"/>
<output expression=""rollno is"&rollno& "name is"&name& "address is"&address& "bloodgroup is"&bloodgroup& "phonenumber is"&phonenumber" newline="True"/>
<declare name="semester" type="Integer" array="False" size=""/>
<output expression=""enter semester"" newline="True"/>
<input variable="semester"/>
<declare name="subjectcode1" type="String" array="False" size=""/>
<output expression=""enter subjectcode1"" newline="True"/>
<input variable="subjectcode1"/>
<declare name="subjectcode2" type="String" array="False" size=""/>
<output expression=""enter subjectcode2"" newline="True"/>
<input variable="subjectcode2"/>
<declare name="subjectcode3" type="String" array="False" size=""/>
<output expression=""enter subjectcode3"" newline="True"/>
<input variable="subjectcode3"/>
<declare name="subjectcode4" type="String" array="False" size=""/>
<output expression=""enter subjectcode4"" newline="True"/>
<input variable="subjectcode4"/>
<declare name="subjectcode5" type="String" array="False" size=""/>
<output expression=""enter subjectcode5"" newline="True"/>
<input variable="subjectcode5"/>
<declare name="marks1" type="Integer" array="False" size=""/>
<declare name="marks2" type="Integer" array="False" size=""/>
<declare name="marks3" type="Integer" array="False" size=""/>
<declare name="marks4" type="Integer" array="False" size=""/>
<declare name="marks5" type="Integer" array="False" size=""/>
<output expression=""enter marks1"& "enter marks2"& "enter marks3"& "enter marks4"& "enter marks"" newline="True"/>
<input variable="marks1"/>
<input variable="marks2"/>
<input variable="marks3"/>
<input variable="marks4"/>
<input variable="marks5"/>
<declare name="total" type="Real" array="False" size=""/>
<assign variable="total" expression="marks1+marks2+marks3+marks4+marks5"/>
<output expression="total" newline="True"/>
<declare name="average" type="Real" array="False" size=""/>
<assign variable="average" expression="total/5"/>
<output expression="average" newline="True"/>
</body>
</function>
</flowgorithm>