-
Notifications
You must be signed in to change notification settings - Fork 0
/
14-Çarpım Tablosu.fprg
23 lines (23 loc) · 1.1 KB
/
14-Çarpım Tablosu.fprg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<flowgorithm fileversion="3.0">
<attributes>
<attribute name="name" value=""/>
<attribute name="authors" value="husey"/>
<attribute name="about" value=""/>
<attribute name="saved" value="2023-08-16 06:52:34 ÖS"/>
<attribute name="created" value="aHVzZXk7SMWhU0VZSU47MjAyMy0wOC0xNjswNjo0ODozOCDDllM7MjgxMA=="/>
<attribute name="edited" value="aHVzZXk7SMWhU0VZSU47MjAyMy0wOC0xNjswNjo1MjozNCDDllM7MTsyOTA5"/>
</attributes>
<function name="Main" type="None" variable="">
<parameters/>
<body>
<declare name="i, j" type="Integer" array="False" size=""/>
<output expression=""1'den 5'e Kadar Çarpım Tablosu: "" newline="True"/>
<for variable="i" start="1" end="5" direction="inc" step="1">
<for variable="j" start="1" end="10" direction="inc" step="1">
<output expression="i & "x" & j & "=" & i * j" newline="True"/>
</for>
</for>
</body>
</function>
</flowgorithm>