2020年11月18日
摘要: // 一元二次方程求解 // 重复执行,直到按Ctrl+Z结束 // #include <math.h> #include <stdio.h> int main(){ float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b 阅读全文
posted @ 2020-11-18 13:11 晨风Vivian 阅读(152) 评论(4) 推荐(0)