摘要: part 1: 一元二次方程求解 #include <math.h>#include <stdio.h>#include <stdlib.h>int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b 阅读全文
posted @ 2019-11-17 00:27 土土开开 阅读(107) 评论(1) 推荐(0)