-
Notifications
You must be signed in to change notification settings - Fork 0
/
student details.fprg
43 lines (43 loc) · 2.98 KB
/
student details.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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="v j srikar"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-10-28 10:54:41 AM"/>
<attribute name="created" value="diBqIHNyaWthcjtERVNLVE9QLUpMOTVCVVU7MjAyMi0xMC0yODswOTo0NzozOSBBTTszMjk3"/>
<attribute name="edited" value="diBqIHNyaWthcjtERVNLVE9QLUpMOTVCVVU7MjAyMi0xMC0yODsxMDo1NDo0MSBBTTsxOzMzODg="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="name" type="String" array="False" size=""/>
<input variable="name"/>
<declare name="rollno" type="Integer" array="False" size=""/>
<input variable="rollno"/>
<declare name="address" type="String" array="False" size=""/>
<input variable="address"/>
<declare name="bloodgroup" type="String" array="False" size=""/>
<input variable="bloodgroup"/>
<declare name="phnnum" type="Integer" array="False" size=""/>
<input variable="phnnum"/>
<declare name="departmentassigned" type="String" array="False" size=""/>
<input variable="departmentassigned"/>
<declare name="sem" type="String" array="False" size=""/>
<input variable="sem"/>
<declare name="firstsubcode" type="Integer" array="False" size=""/>
<input variable="firstsubcode"/>
<declare name="secondsubcode" type="Integer" array="False" size=""/>
<input variable="secondsubcode"/>
<declare name="firstsubmarks" type="Integer" array="False" size=""/>
<input variable="firstsubmarks"/>
<declare name="secondsubmarks" type="Integer" array="False" size=""/>
<input variable="secondsubmarks"/>
<declare name="totalmarks" type="Integer" array="False" size=""/>
<assign variable="totalmarks" expression="firstsubmarks+secondsubmarks"/>
<declare name="avg" type="Integer" array="False" size=""/>
<assign variable="avg" expression="totalmarks/2"/>
<output expression=""enteryourname " &name& "enteryourrollno " &rollno& "enteryouraddress" &address& "enteryourbloodgroup" &bloodgroup& "enteryourphnnum" &phnnum& "enteryoudepartmentassigned" &departmentassigned& "enteryoursem"&sem& "enteryourfirstsubcode"&firstsubcode& "enteryoursecondsubcode"&secondsubcode& "enteryourfirstsubmarks"&firstsubmarks& "enteryourtotalmarks"&totalmarks& "enteryouravg"&avg" newline="True"/>
</body>
</function>
</flowgorithm>