This website works better with JavaScript.
Home
Explore
Help
Sign In
MKjanek32
/
AK2-stuff
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Różne programy na zajęcia laboratoryjne z AK2
14
Commits
1
Branch
Tree:
6fee8ccd48
AK2-stuff
/
lab4
/
kwadrat.c
kwadrat.c
77B
History
Raw
1
2
3
4
5
6
double
kwadrat
(
int
x,
double
y)
{
double
z = x*x + y*y;
return
z;
}