提交时间:2025-02-10 21:12:10
运行 ID: 308847
#include<bits/stdc++.h> using namespace std; int main() { double x1,x2,a=0,b=0,s=0; cin>>x1>>x2; a=x1*x1*3.14; b=x2*x2*3.14; s=a-b; cout<<fixed<<setprecision(0)<<s<<endl; return 0; }