本帖最後由 李泳霖 於 2022-6-2 17:49 編輯
設計說明:
1. 此程式為計算圓的面積。
2. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
(4個錯誤)
- #include <stdio.h>
- #include <stdlib.h>
- int main ()
- {
- struct circle {
- int x, y;
- double radius;
- }
-
- double area;
- struct circle c1={10, 10, 2.5};
-
- area = radius*c1.radius*3.14159;
-
- printf("此圓的圓心為(%d, %d), 面積為%.2f\n", x, y, area);
- system("PAUSE");
- return 0;
- }
複製代碼 |