7 lines
77 B
C
7 lines
77 B
C
double kwadrat(int x, double y)
|
|
{
|
|
double z = x*x + y*y;
|
|
|
|
return z;
|
|
}
|