Untitled

Anonymous
plain_text
11/13/2022 1:59 PM
184 B
18
Indexable
#include <iostream>
using namespace std;
int main()
{
	int d;
    float P = 3.14;
	cin >> d ;
	float l = P * d;
	cout << l;
}
Editor is loading...