摘要: 求一元二次方程的根 注意\(\dfrac{-b+\sqrt{b^2-4ac}}{2a}\)不一定比\(\dfrac{-b-\sqrt{b^2-4ac}}{2a}\)大。 #include <stdio.h> #include <math.h> int main() { float a, b, c; 阅读全文
posted @ 2023-10-14 22:52 计算概论B-2023秋-4班 阅读(164) 评论(0) 推荐(0)
摘要: 求累加和 #include <stdio.h> int main() { int k; scanf("%d", &k); /* 直接计算 double tot = k * (k + 1) / 2; printf("%.0lf,%.2lf\n", tot, tot / k); */ int tot = 阅读全文
posted @ 2023-10-10 23:20 计算概论B-2023秋-4班 阅读(111) 评论(0) 推荐(0)