哪位大神帮我解决一下这道C语言问题!

#include<stdio.h>#include<math.h>voidmain(){longinta,b,c;doubled,x1,x2;printf("Please... #include<stdio.h>
#include<math.h>
void main()
{
long int a,b,c;
double d,x1,x2;
printf("Please input a and b.\n");
scanf("%d%d";&a,&b);
c=(a*a+b*b);
if(c<=10000)
{
d=sqrt(c);
x1=((d/2)+c);
x2=((d/2)+(c/2));
printf("%lf%lf",x1,x2);
}
if(c>10000)
{
d=sqrt(c-10000);
x1=((d/2)+c);
x2=((d/2)+(c/2));
printf("%lf%lf",x1,x2);
}
}

--------------------Configuration: 32 - Win32 Debug--------------------
Compiling...
32.cpp
D:\skin2\MSDev98\MyProjects\32\32.cpp(8) : error C2143: syntax error : missing ')' before ';'
D:\skin2\MSDev98\MyProjects\32\32.cpp(8) : error C2059: syntax error : ')'
Error executing cl.exe.
32.exe - 2 error(s), 0 warning(s)
展开
 我来答
完满且舒坦的小繁花C
2013-07-25
知道答主
回答量:11
采纳率:0%
帮助的人:8.2万
展开全部

#include<stdio.h>
#include<math.h>

int _tmain(int argc, _TCHAR* argv[])
{
 long int a,b;
 double d,x1,x2,c; //把 int c 改为 double c
 printf("Please input a and b.\n");
 
 scanf("%d%d",&a,&b); //把分号 ; 改为 逗号 ,
 
 c=(a*a+b*b);
 
 if(c<=10000) { 
  d=sqrt(c); 
  
  x1=((d/2)+c); 
  
  x2=((d/2)+(c/2)); 
  
  printf("%lf%lf",x1,x2);
 }
 
 if(c>10000) { 
  d=sqrt(c-10000); 
  x1=((d/2)+c); 
  x2=((d/2)+(c/2)); 
  printf("%lf%lf",x1,x2);
 }
 return 0;
}

 
百度网友3844c27
2013-07-25 · TA获得超过2952个赞
知道小有建树答主
回答量:782
采纳率:100%
帮助的人:459万
展开全部
#include<stdio.h>
#include<math.h>
void main()
{
long int a,b,c;
double d,x1,x2;
printf("Please input a and b.\n");
scanf("%d%d";&a,&b); //此句有误!应改为scanf("%d%d",&a,&b);
c=(a*a+b*b);
if(c<=10000)
{
d=sqrt(c);
x1=((d/2)+c);
x2=((d/2)+(c/2));
printf("%lf%lf",x1,x2);
}
if(c>10000)
{
d=sqrt(c-10000);
x1=((d/2)+c);
x2=((d/2)+(c/2));
printf("%lf%lf",x1,x2);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
hu0904
2013-07-25 · TA获得超过222个赞
知道小有建树答主
回答量:510
采纳率:0%
帮助的人:457万
展开全部
scanf("%d%d";&a,&b);
你这中间是分号,要改成逗号。。。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式