摘要: c 平方根 //平方 pow() int a = pow(4,2); // 4的平方=16 //开方 int b = pow(4,0.5); // 4的平方根=2 int c = sqrt(4); // 4的平方根=2 //整数绝对值 int c = abs(b-c); //浮点数绝对值 doubl 阅读全文
posted @ 2020-09-04 14:32 岳凯歌 阅读(264) 评论(0) 推荐(0) 编辑