首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴夏日_的代码贴C语言
#include<stdio.h>
#include<math.h>
int main()
{
double a,b,c,dis,p,q;
printf("please intput a;b;c:");
scanf("%lf%lf%lf",&a,&b,&c);
dis=b*b-4*a*c;
p=-b/(2*a);
if(a!=0)
{

......................
阅读全部 | 2015年3月31日 19:23
1
夏日_