首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴金橘棕白的代码贴全部
#include <stdio.h>
#include <math.h>

int main() {
    double a,b,c;
    printf("enter a,b and c:");
    scanf("%lf,%lf,%lf",&a,&b,&c);
    
    if (a==0&&b==0&&c==0){
        printf("方程不存在");
    }
    else if(a==0&&b!=0){
......................
阅读全部 | 2025年10月13日 14:52
1
金橘棕白