-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAyınHangiMevsimdeOldugunuHesaplama.fprg
48 lines (48 loc) · 2.23 KB
/
AyınHangiMevsimdeOldugunuHesaplama.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
<?xml version="1.0"?>
<flowgorithm fileversion="4.2">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="veysel"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2024-08-06 12:13:54 ÖÖ"/>
<attribute name="created" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA1OzExOjM2OjA0IMOWUzsyNzQ4"/>
<attribute name="edited" value="dmV5c2VsO1ZFWVNFTC1QQzsyMDI0LTA4LTA2OzEyOjEzOjU0IMOWw5Y7MzsyOTkx"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="ay" type="Integer" array="False" size=""/>
<output expression=""bulundugunuz ayı girin"" newline="True"/>
<input variable="ay"/>
<if expression="ay>=1 && ay<3">
<then>
<output expression=""kış"" newline="True"/>
</then>
<else>
<if expression="ay>=3 && ay<6">
<then>
<output expression=""bahar"" newline="True"/>
</then>
<else>
<if expression="ay>=6 && ay<9">
<then>
<output expression=""yaz"" newline="True"/>
</then>
<else>
<if expression="ay>=9 && ay<12">
<then>
<output expression=""sonbahar"" newline="True"/>
</then>
<else>
<output expression=""kış"" newline="True"/>
</else>
</if>
</else>
</if>
</else>
</if>
</else>
</if>
</body>
</function>
</flowgorithm>