← Back to List

16478번: 원의 분할 ↗

Solutions

C++14
127 B | 127 chars
#include <iostream>
#include <cstdio>
using namespace std;
int a,b,c;
int main()
{
	cin>>a>>b>>c;
	printf("%.6lf",1.0*a*c/b);
}