求圆的周长及面积

#include <stdio.h>
int main() {
float R;
printf("请输入圆的直径: ");
scanf_s("%f", &R);
printf("这个圆的周长L:%f ",R * 3.14);
return 0;
}

【面积为S=r*r*圆周率】

原文地址:https://www.cnblogs.com/zwf020107/p/14138961.html