22 lines
206 B
C
22 lines
206 B
C
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main () {
|
||
|
|
||
|
float a = 3.;
|
||
|
float b = 2.;
|
||
|
|
||
|
float norme(float ,float );
|
||
|
|
||
|
printf("%f \n",norme(a,b));
|
||
|
|
||
|
return 1;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
float norme(float x,float y) {
|
||
|
return x*x+y*y ;
|
||
|
}
|