#Include #Include Using Namespace STD Int Main (Float R Float Const Pi 3.14 Cin R Cout R R Pi Return 0 )

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include <stdio.

h>
#include <math.h>

using namespace std;

int main () {
float r;
float const pi = 3.14;

cin >> r;
cout << r*r*pi;

return 0;
}

You might also like