C语言程序错误illegal indirection
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/10 07:46:59
C语言程序错误illegal indirection
// c.cpp :Defines the entry point for the console application.
//华氏温度转换为摄氏温度
#include "stdafx.h"
#include "stdio.h"
#define FREEZING_PT 32.0f;
#define SCALE_FACTOR (5.0 / 9.0f)
int main()
{
\x05float fahrenheit,celsius;\x05//声明变量fahrenheit和celsius
\x05printf("Enter Fahrenheit temperature:");
\x05scanf("%f",&fahrenheit);\x05\x05//获取华氏温度
\x05celsius=( fahrenheit - FREEZING_PT )* SCALE_FACTOR;\x05\x05\x05//计算变量celsius的值
\x05printf("Celsius equivalent:%.1f\n",celsius);\x05\x05//显示显示摄氏温度
\x05
\x05return 0;\x05\x05//返回操作系统
}
--------------------Configuration:c - Win32 Debug--------------------
Compiling...
c.cpp
f:\cccc\c\c.cpp(19) :error C2143:syntax error :missing ')' before ';'
f:\cccc\c\c.cpp(19) :error C2059:syntax error :')'
f:\cccc\c\c.cpp(19) :error C2100:illegal indirection
执行 cl.exe 时出错.
c.exe - 1 error(s),0 warning(s)
请问上面这段代码错在哪了?求指正!
// c.cpp :Defines the entry point for the console application.
//华氏温度转换为摄氏温度
#include "stdafx.h"
#include "stdio.h"
#define FREEZING_PT 32.0f;
#define SCALE_FACTOR (5.0 / 9.0f)
int main()
{
\x05float fahrenheit,celsius;\x05//声明变量fahrenheit和celsius
\x05printf("Enter Fahrenheit temperature:");
\x05scanf("%f",&fahrenheit);\x05\x05//获取华氏温度
\x05celsius=( fahrenheit - FREEZING_PT )* SCALE_FACTOR;\x05\x05\x05//计算变量celsius的值
\x05printf("Celsius equivalent:%.1f\n",celsius);\x05\x05//显示显示摄氏温度
\x05
\x05return 0;\x05\x05//返回操作系统
}
--------------------Configuration:c - Win32 Debug--------------------
Compiling...
c.cpp
f:\cccc\c\c.cpp(19) :error C2143:syntax error :missing ')' before ';'
f:\cccc\c\c.cpp(19) :error C2059:syntax error :')'
f:\cccc\c\c.cpp(19) :error C2100:illegal indirection
执行 cl.exe 时出错.
c.exe - 1 error(s),0 warning(s)
请问上面这段代码错在哪了?求指正!
#include "stdafx.h"
#include "stdio.h"
#define FREEZING_PT 32.0f; //此处多了一个分号
#define SCALE_FACTOR (5.0 / 9.0f)
这里用的是宏定义,在C语言里,宏采用的是一种类似替换的原则,比如你上面的程序,C语言实际执行的是:
celsius=( fahrenheit - 《32.0f;》 )* SCALE_FACTOR;
请注意《》内的内容,这里宏“傻瓜”似的把分号替换了过来,所以错误会显示在这里
#include "stdio.h"
#define FREEZING_PT 32.0f; //此处多了一个分号
#define SCALE_FACTOR (5.0 / 9.0f)
这里用的是宏定义,在C语言里,宏采用的是一种类似替换的原则,比如你上面的程序,C语言实际执行的是:
celsius=( fahrenheit - 《32.0f;》 )* SCALE_FACTOR;
请注意《》内的内容,这里宏“傻瓜”似的把分号替换了过来,所以错误会显示在这里
c语言中这是怎麽回事illegal case illegal break
c语言错误:'FILE' :illegal use of this type as an expression这是神马情
这个JAVA程序提示错误 Illegal modifier for parameter isDescending; on
C语言程序填空/*---------------------------------------------------
illegal expression是什么错误?pascal
请问这个C语言程序哪里出错了?验证时总提示有一个错误.
C语言初学者求助,一个程序设计题,大神看看我编的程序是否有错误.
这个C语言程序是求三角形面积的,其中有个错误求大神指出
y=x^2+2/3(x+1);在c语言程序中哪里有错误
C语言帮忙找出下列各段程序中的语法和逻辑错误.
求大神帮我看一下这个c语言程序的错误.
C语言用牛顿迭代法球X的平方根 程序错误怎么改啊