#include "stdio.h"
main()
{
float a,b,c;//x1,x2,p,q;
do
{
printf("请输入a,b,c的值\n");
scanf("%f,%f,%f",&a,&b,&c);
if ((a<1e-6)||(b*b-4*a*c)<1e-6) printf("输入错误!\n");
fflush(stdin);
}
while (a<1e-6||b*b-4*a*c<1e-6);
printf("输入无误\n");
}
----------------解决方案--------------------------------------------------------
我调过了,没有问题,在c++里面没问题....
----------------解决方案--------------------------------------------------------
原帖由 [bold][underline]sunkaidong[/underline][/bold] 于 2008-1-11 20:20 发表 [url=http://bbs.bc-cn.net/redirect.php?goto=findpost&pid=1178493&ptid=197082][/url]
#include "math.h"
#include "stdio.h"
main()
{
float a,b,c;//x1,x2,p,q;
do
{
printf("请输入a,b,c的值\n");
scanf("%f,%f,%f",&a,&b,&c);
if ((a
#include "math.h"
#include "stdio.h"
main()
{
float a,b,c;//x1,x2,p,q;
do
{
printf("请输入a,b,c的值\n");
scanf("%f,%f,%f",&a,&b,&c);
if ((a
可是当a<0时应该是对的啊而且下面几个也不行
----------------解决方案--------------------------------------------------------
我弄出来了
#include "math.h"
#include "stdio.h"
main()
{float a,b,c,disc,x1,x2,p,q,z=1;
while(z)
{
printf("请输入a,b,c的值\n");
scanf("%f %f %f",&a,&b,&c);
if ((a==0)||((b*b-4*a*c)<0))
{printf("输入错误!");}
if (a!=0&&(b*b-4*a*c)>=0)
{printf("输入无误");z=0;}
}
disc=b*b-4*a*c;
p=-b/(2*a);
q=sqrt(disc)/(2*a);
x1=p+q;
x2=p-q;
printf("\nx1=%f\n",x1);
printf("\nx2=%f\n",x2);
}
----------------解决方案--------------------------------------------------------
printf("输入无误");/*放在循环内*/
#include <math.h>#include <stdio.h>
void main()
{
float a, b, c, x1, x2, p, q;
do
{
printf("请输入a,b,c的值\n");
scanf("%f%f%f", &a, &b, &c);
if (a == 0 || b*b-4*a*c < 0)
printf("输入错误!\n");
else
printf("输入无误!\n");
}
while (a !=0 && b*b-4*a*c >= 0);
}
----------------解决方案--------------------------------------------------------
搞了半天,是while的循环条件错了,还有一个缓冲溢出错误。
应该是
#include <math.h>
#include <stdio.h>
void main()
{
float a,b,c;
do
{
printf("请输入a,b,c的值:\n");
scanf("%f,%f,%f",&a,&b,&c);
getchar();
if((a == 0) || (b*b -4*a*c)<0)
printf("输入错误!");
}
while((a == 0) || (b*b -4*a*c)<0);
printf("输入无误");
}
此问题已解决,谢谢各位
----------------解决方案--------------------------------------------------------