摘要: #include <stdio.h> #include <math.h> int main() { float a; float x1, x2; printf("请输入待求平方根的数:"); scanf("%f",&a); x1 = a / 2; x2 = (x1 + a / x1) / 2; wh 阅读全文
posted @ 2023-04-22 15:53 痛苦代码源 阅读(21) 评论(0) 推荐(0) 编辑