Files
AK2-stuff/lab4/kwadrat.c
T
2019-06-01 14:39:21 +02:00

7 lines
77 B
C

double kwadrat(int x, double y)
{
double z = x*x + y*y;
return z;
}