摘要:
#include <stdio.h> /******************************************************************* * * 函数名称: str_DestDel * 函数功能: 删除一个字符串中与另一个字符串中的相同字母并且不区分大小写 * 阅读全文
posted @ 2024-05-06 20:28
林大官人995
阅读(19)
评论(0)
推荐(0)
从键盘输入a, b, c的值,编程计算并输出一元二次方程ax2 + bx + c = 0的根 并保留两位小数 #include <stdio.h> //使用printf,scanf函数 #include <math.h> //使用sqrt(开平方)函数 int main() { float a, b 阅读全文