initial commit

This commit is contained in:
2026-07-18 20:34:55 +02:00
commit 59ad004c96
474 changed files with 226635 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#include <stdio.h>
#include <math.h>
int main(void)
{
for(int y=1; y<100; y++)
{
float fz = 100.0 / (float)y;
printf("%d %f %f\n", y, floor(fz * 100.0), fz * 100.0);
}
return 0;
}