輸入圓的半徑,求出圓的面積,並輸出。 #include<stdio.h> //文件包含操作//double area(int a) //定義area函數,計算圓面積//{ double t; //定義變量// t=3.14*a*a; return(t); //將s值返回,通過area帶回 ...