C语言的问题。。。error C2059: syntax error : '<'
#include<stdio.h>#include<math.h>main(){doublea,b,c,p,q,x1,x2,t;printf("pleaseinputa,...
#include <stdio.h>
#include <math.h>
main()
{
double a,b,c,p,q,x1,x2,t;
printf("please input a,b,c\n");
scanf("%f%f%f\n",&a,&b,&c);
if (b*b-4*a*c<0)
printf("方程无实根\n");
else
t=sqrt(b*b-4*a*c);
p=-b/2*a;
q=t/2*a;
x1=p+q;
x2=p-q;
printf("%4.2f/n%4.2f\n",x1,x2);
}
为什么会出现error C2059: syntax error : '<' 展开
#include <math.h>
main()
{
double a,b,c,p,q,x1,x2,t;
printf("please input a,b,c\n");
scanf("%f%f%f\n",&a,&b,&c);
if (b*b-4*a*c<0)
printf("方程无实根\n");
else
t=sqrt(b*b-4*a*c);
p=-b/2*a;
q=t/2*a;
x1=p+q;
x2=p-q;
printf("%4.2f/n%4.2f\n",x1,x2);
}
为什么会出现error C2059: syntax error : '<' 展开
展开全部
解决方法是把你的
#define
N
10
这句话放在所有包含头文件include语句的下面的位置
也可以建议你不要用宏
const
int
N=10;
这样也可以
你的N是个宏会被替换成10代码变成
typedef
struct
_IMAGE_SYMBOL
{
union
{
BYTE
ShortName[8];
struct
{
DWORD
Short;
//
if
0,
use
LongName
DWORD
Long;
//
offset
into
string
table
}
Name;
PBYTE
LongName[2];
}
10;
(定位在这里。。。。这是什么啊。。。T.T)
打字不易,如满意,望采纳。
#define
N
10
这句话放在所有包含头文件include语句的下面的位置
也可以建议你不要用宏
const
int
N=10;
这样也可以
你的N是个宏会被替换成10代码变成
typedef
struct
_IMAGE_SYMBOL
{
union
{
BYTE
ShortName[8];
struct
{
DWORD
Short;
//
if
0,
use
LongName
DWORD
Long;
//
offset
into
string
table
}
Name;
PBYTE
LongName[2];
}
10;
(定位在这里。。。。这是什么啊。。。T.T)
打字不易,如满意,望采纳。
展开全部
#include <stdio.h>
#include <math.h>
int main()
{
double a,b,c,p,q,x1,x2,t;
printf("please input a,b,c\n");
scanf("%f%f%f",&a,&b,&c);
if (b*b-4*a*c<0)
printf("方程无实根\n");
else
{
t=sqrt(b*b-4*a*c);
p=-b/2*a;
q=t/2*a;
x1=p+q;
x2=p-q;
printf("%4.2f/n%4.2f\n",x1,x2);
}
return 0;
}
这样就可以了,第一个 输入里面不要有换行,第二个 你的主函数main() 一定要明确类型,一般都是int main() 主 函数里面最后要有一个return 0 ;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我用vs2010编译没错误执行的时候出问题了
#include <stdio.h>
#include <math.h>
main()
{
double a,b,c,p,q,x1,x2,t;
printf("please input a,b,c\n");
scanf("%lf%lf%lf",&a,&b,&c);//用lf输入输出double类型,不要\n这里
if (b*b-4*a*c<0)
printf("方程无实根\n");
else {//把大括号2加上
t=sqrt(b*b-4*a*c);
p=-b/2*a;
q=t/2*a;
x1=p+q;
x2=p-q;
printf("%4.2lf\n%4.2lf\n",x1,x2);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
#include <math.h>
main()
{
double a,b,c,p,q,x1,x2,t;
printf("please input a,b,c\n");
scanf("%lf%lf%lf",&a,&b,&c);
if (b*b-4*a*c<0) {
printf("方程无实根\n");
return -1;
}
else {
t=sqrt(b*b-4*a*c);
p=-b/2*a;
q=t/2*a;
x1=p+q;
x2=p-q;
printf("x1=%4.2f\nx2=%4.2f\n",x1,x2);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询