13 lines
221 B
C
13 lines
221 B
C
|
#include <stdio.h>
|
||
|
int main() {
|
||
|
float rayon ;
|
||
|
float resultat ;
|
||
|
const float pi = 3.141592653589793 ;
|
||
|
|
||
|
rayon = 10;
|
||
|
resultat = pi * rayon * rayon ;
|
||
|
printf("resultat = %f\n",resultat);
|
||
|
|
||
|
}
|
||
|
|