-
Notifications
You must be signed in to change notification settings - Fork 0
/
studen info.fprg
38 lines (38 loc) · 2.18 KB
/
studen info.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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="nunna"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-10-28 09:46:05 AM"/>
<attribute name="created" value="bnVubmE7QVNSSVRBOzIwMjItMTAtMjg7MDk6MjQ6MjkgQU07MjI2OA=="/>
<attribute name="edited" value="bnVubmE7QVNSSVRBOzIwMjItMTAtMjg7MDk6NDY6MDUgQU07MjsyMzc1"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="rollnumber" type="String" array="False" size=""/>
<output expression=""enter your roll number"" newline="True"/>
<input variable="rollnumber"/>
<declare name="name" type="String" array="False" size=""/>
<output expression=""enter your name"" newline="True"/>
<input variable="name"/>
<declare name="address" type="String" array="False" size=""/>
<output expression=""enter your address"" newline="True"/>
<input variable="address"/>
<declare name="bloodgroup" type="String" array="False" size=""/>
<output expression=""what is your bloood group"" newline="True"/>
<input variable="bloodgroup"/>
<declare name="phonenumber" type="Integer" array="False" size=""/>
<output expression=""give me your phonenumber daaaaa!"" newline="True"/>
<input variable="phonenumber"/>
<declare name="department" type="String" array="False" size=""/>
<output expression=""in which department are u assigned in?"" newline="True"/>
<input variable="department"/>
<output expression=""the name is " & name" newline="True"/>
<output expression=""the rollnumber is " & rollnumber" newline="True"/>
<output expression=""the address is " & address" newline="True"/>
<output expression=""the bloodgroup is" & bloodgroup" newline="True"/>
</body>
</function>
</flowgorithm>