error C2001: newline in constant
#include<stdio.h>intmain(){floata,b,c,d;floattemp;scanf("%f%f%f%f,&a,&b,&c,&d);temp=a...
#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
我实在是不懂啦!各位大神! 展开
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;
}
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;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询