7 lines
104 B
C
7 lines
104 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
float r;
|
|
scanf("%f", &r);
|
|
printf("%.2f\n", 3.14 * r * r);
|
|
} |