题目简单,但用cout有点麻烦
#include<iostream> using namespace std; int main() { double R,A; cin>>R>>A; A=R*R*3.14159; printf("A=%.4lf",A); return 0; }