C++中系统报错newline in constant是什么意思?
5个回答
展开全部
一般从网页上直接拷代码下来编译时,许多全角符号没有转成半角符号,编译器不能识别,所以要手工把全角符号改成半角,如:“”等。
#include<stdio.h>
int main()
{
float a,b,c,d;
float temp;
scanf("%f %f %f %f, &a, &b, &c, &d);
temp=a
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return 0;
}
error C2146: syntax error : missing ´)´ before identifier temp
error C2001: newline in constant
修改后为:
#include<stdio.h>
int main()
{
float a,b,c,d;
float temp;
scanf("%f %f %f %f", &a, &b, &c, &d);//这里有修改,少了一个"
temp=a;//这里少了一个分号
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return 0;
}
#include<stdio.h>
int main()
{
float a,b,c,d;
float temp;
scanf("%f %f %f %f, &a, &b, &c, &d);
temp=a
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return 0;
}
error C2146: syntax error : missing ´)´ before identifier temp
error C2001: newline in constant
修改后为:
#include<stdio.h>
int main()
{
float a,b,c,d;
float temp;
scanf("%f %f %f %f", &a, &b, &c, &d);//这里有修改,少了一个"
temp=a;//这里少了一个分号
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return 0;
}
展开全部
一般从网页上直接拷代码下来编译时,许多全角符号没有转成半角符号,编译器不能识别,所以要手工把全角符号改成半角,如:“”等。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在程序的末尾点个回车,重新开一行试试。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一般从网页上直接拷代码下来编译时,许多全角符号没有转成半角符号,编译器不能识别,所以要手工把全角符号改成半角,如:“”等。
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f,
&a,
&b,
&c,
&d);
temp=a
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
error
C2146:
syntax
error
:
missing
´)´
before
identifier
temp
error
C2001:
newline
in
constant
修改后为:
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f",
&a,
&b,
&c,
&d);//这里有修改,少了一个"
temp=a;//这里少了一个分号
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f,
&a,
&b,
&c,
&d);
temp=a
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
error
C2146:
syntax
error
:
missing
´)´
before
identifier
temp
error
C2001:
newline
in
constant
修改后为:
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f",
&a,
&b,
&c,
&d);//这里有修改,少了一个"
temp=a;//这里少了一个分号
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一般从网页上直接拷代码下来编译时,许多全角符号没有转成半角符号,编译器不能识别,所以要手工把全角符号改成半角,如:“”等。
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f,
&a,
&b,
&c,
&d);
temp=a
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
error
C2146:
syntax
error
:
missing
´)´
before
identifier
temp
error
C2001:
newline
in
constant
修改后为:
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f",
&a,
&b,
&c,
&d);//这里有修改,少了一个"
temp=a;//这里少了一个分号
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f,
&a,
&b,
&c,
&d);
temp=a
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
error
C2146:
syntax
error
:
missing
´)´
before
identifier
temp
error
C2001:
newline
in
constant
修改后为:
#include<stdio.h>
int
main()
{
float
a,b,c,d;
float
temp;
scanf("%f
%f
%f
%f",
&a,
&b,
&c,
&d);//这里有修改,少了一个"
temp=a;//这里少了一个分号
if(temp<b)
temp=b;
if(temp<c)
temp=c;
if(temp<d)
temp=d;
printf("\nmax=%f",temp);
return
0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询