-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic student details.fprg
32 lines (32 loc) · 1.83 KB
/
basic 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
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="Rushy"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2022-10-30 08:59:50 AM"/>
<attribute name="created" value="UnVzaHk7UlVTSFlFTkRSQTsyMDIyLTEwLTMwOzA4OjQ5OjM5IEFNOzI1ODQ="/>
<attribute name="edited" value="UnVzaHk7UlVTSFlFTkRSQTsyMDIyLTEwLTMwOzA4OjU5OjUwIEFNOzE7MjY4Ng=="/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="a" type="String" array="False" size=""/>
<output expression=""enter your roll number"" newline="True"/>
<input variable="a"/>
<declare name="b" type="String" array="False" size=""/>
<output expression=""enter your name"" newline="True"/>
<input variable="b"/>
<declare name="c" type="String" array="False" size=""/>
<output expression=""enter your address"" newline="True"/>
<input variable="c"/>
<declare name="d" type="String" array="False" size=""/>
<output expression=""enter your blood group"" newline="True"/>
<input variable="d"/>
<declare name="e" type="String" array="False" size=""/>
<output expression=""enter your assigned department"" newline="True"/>
<input variable="e"/>
<output expression=""Your name is" & b & "Your roll number is" & a & "You live in" & c & "Your blood group is" & d & "Your assigned department is" & e" newline="True"/>
</body>
</function>
</flowgorithm>