Wydanie R2019.06.1

This commit is contained in:
Jan Potocki
2019-06-01 14:39:21 +02:00
commit e74d77ce3b
10 changed files with 418 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
double kwadrat(int x, double y)
{
double z = x*x + y*y;
return z;
}