题解列表

筛选

求长方形面积-题解(C语言代码)

摘要:**长方形周长及面积计算公式: 周长=(长+宽)*2 面积=长*宽** 然后要注意题目的输出要求 ### 代码如下: #include int main {      int a……