摘要: 实验任务一 原始程序代码: 1 // 一元二次方程求解 2 // 重复执行, 直到按Ctrl+Z结束 3 // 4 #include <math.h> 5 #include <stdio.h> 6 int main() { 7 float a, b, c, x1, x2; 8 float delta 阅读全文
posted @ 2020-11-27 22:00 katachip 阅读(115) 评论(2) 推荐(0) 编辑