摘要: 算法竞赛入门经典第二版——第一章例题 例题 1-1 圆柱体的表面积 输入底面半径r和高h,输出圆柱体的表面积,保留三位小数,格式: 样例输入: 3.5 9 样例输出: Area = 274.889 代码: #include <stdio.h> #include <math.h> int main() 阅读全文
posted @ 2020-08-10 22:32 Techoc 阅读(118) 评论(0) 推荐(0) 编辑