10 lines
79 B
C
10 lines
79 B
C
int kvadrat(int x)
|
|
{
|
|
return x*x;
|
|
}
|
|
|
|
int kubik(int x)
|
|
{
|
|
return x*x*x;
|
|
}
|