#Include #Include Using Namespace STD Int Main (Float R, A Float Const Pi 3.14 Cin R Cout A 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,a;
float const pi = 3.14;

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

return 0;
}

You might also like