首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴哈哈丨无名的代码贴C语言
#include"stdio.h"
#include "math.h"
int main( )
{   float a, b, c, d, x1, x2, q,m,n;
    printf("Please input a, b, c\n");
    scanf("%f,%f,%f", &a, &b, &c);
    d=b*b-4*a*c;
    if(d>=0)
       {  q=sqrt (d);       /*求实根*/
          x1=(-b+q)/(2*a);
          x2=(-b-q)/(2*a);
          printf("d=%.2f,x1=%.2f, x2=%.2f \n ",d, x1, x2);
......................
阅读全部 | 2016年10月24日 20:06
1
哈哈丨无名