reorganizing code

This commit is contained in:
cozis
2022-03-12 23:17:44 +01:00
parent de11b968fb
commit 2dcfbd194e
18 changed files with 141 additions and 335 deletions
+8 -8
View File
@@ -5,15 +5,15 @@ print('Start\n');
i = 0;
n = 1000;
while i < n:
{
1 + 1 * 1;
i = i + 1;
while i < n: {
fun printPercent()
print(100.0 * i / n, '%\n');
1 + 1 * 1;
i = i + 1;
fun printPercent()
print(100.0 * i / n, '%\n');
printPercent();
}
printPercent();
}
print('End\n');