keil编程错误大神给指导下啊 TXT.C(35): error C141: syntax error near '&&'

以下为错误
TXT.C(35): error C141: syntax error near '&&'
TXT.C(36): error C141: syntax error near 'LED2'
TXT.C(47): error C141: syntax error near '!'
Target not created

源程序
# include<reg52.h>
# include<absacc.h>
# define uchar unsigned char
# define AD XBYTE[0x7FF8]
sbit led1=P2^0;
sbit led2=P2^1;
sbit led3=P2^2;
sbit led4=P2^3;
sbit led5=P2^4;
sbit led6=P2^5;
sbit ad_busy=P3^2;
bit bk=1;
unsigned char ad_data,LED1,LED2,LED3,LED4,LED5,LED6;
uchar code led_segment[12]=
{0x3F,0x06,0x58,0x4F,0x66,0x7D,0x07,0x7F,0x6F,0x00,0x00};

void delay(unsigned int i)
{
while(i)
{
i--;
}
}
void display(void)
{
LED1=ad_data%10;
LED2=(ad_data/10)%10;
LED3=ad_data/100;
P2=0xff;
delay(2);
P1=led_segment[LED1];
led1=0;
delay(100);
led1=1;
if(LED3==0)&&(LED2==0)
LED2=10;
P1=led_segment[LED2];
led2=0;
delay(100);
led2=1;
if(LED3==0)
LED3=10;
P1=led_segment[LED3];
led3=0;
delay(100);
led3=1;
bk!bk;
}
void ad0808(void) interrupt 0
{
EA=0;
EX0=0;
ad_data=0;
ad_busy=0;
while(1)
{
if(bk)
{
AD=0;
}
display();
}
}

第1个回答  2013-05-24
改成这样:
if((LED3==0)&&(LED2==0))

bk=!bk;追问

多谢大神啦~修改了以后显示没有错误了呢。。但是出现了这样是为什么啊?单片机编程好难T_T
*** WARNING L1: UNRESOLVED EXTERNAL SYMBOL
SYMBOL: MAIN
MODULE: D:\KEIL\C51\LIB\C51S.LIB (?C_INIT)

追答

晕了,你的main函数呢,任何C语言的程序,都有且只有一个main函数的

本回答被提问者采纳
第2个回答  2013-05-24
35 行if(LED3==0)&&(LED2==0)

if((LED3==0)&&(LED2==0))

47行 bk!bk;=>bk=!bk;

keil c51编译错误error C141: syntax error near 'else',代码如下,求...
else { \/\/3 这个else附近有错误 if((VO==0)&&(MK==0)){\/\/4 LED1=0;LED2=0;LED3=0;}\/\/4 else { \/\/4 \/\/这个else附近有错误 LED1=1;LED2=1;LED3=1;}\/\/4 }\/\/3 }\/\/2 }\/\/1

keil头文件中出现c141错误:syntax error near ';'
只给出这么一点程序是看不出什么问题的。程序中用了uchar,不知道在程序的前面有定义过:#define uchar unsigned char 如果有过定义,那问题不在这些程序中,在其它没有给出的部分。

keil c编译报错: error C141: syntax error near ')' 求高手解答
fatal error C1083: Cannot open include file: 'common.h': No such file or directory 你找的这个头文件VC打不开 )你先在"我的电脑"里搜索一下,看有没有这个头文件,如果有的话,进行第二步操作.2)看一下,你的.cpp代码源文件的所在目录.譬如:c:\\vc98\\myproject\\mycode.cpp.3)由于头文件...

: error C2143: syntax error : missing ';' before ')'
: error C2143: syntax error : missing ';' before ')' #include<math.h>#include<stdlib.h>#include#include<iostream>#include<iomanip>usingnamespacestd;#definepointnumber15;\/\/#defineN5;classPoint{public:Point(doublex,do... #include<math.h>#include<stdlib.h>#include#include<iostream>#include...

keil中出现error c141:syntax error near 'i' error c202 :'x':undefi...
两个错误:1、void DelayMS(unit x)应该是uint x 2、define unchar unsigned char 应该是 define uchar unsigned char 与下面的程序保持一致

在keil编译中总有“syntax error near ‘unsigned’”,请问怎么修改...
把变量定义放在函数开始的地方就可以了

error C141;syntax error near "}"
改为这样试试 uchar DataBuf[16] ;\/\/日期 uchar TimeBuf[16] ;\/\/时间

...错误:PWM.C(38): error C141: syntax error near 'float'
float都是有符号的……

error C141: syntax error near '}'是什么错误???
变量p0,p1没定义 uchar P0[]={0x02,0x00,0x03,0x00,0x03,0x82,0x03,0x9C,0x03,0xFC,0x07,0xF8,0x3F,0xF8,0xFF,0xF0};uchar P1[]={0x3F,0xF8,0x07,0xF8,0x03,0xFC,0x03,0x9C,0x03,0x82,0x03,0x00,0x02,0x00,0x00,0x00};

KeilC语言编程老出现: error C100:unprintable character 0xA1 ski...
这个问题 是很容易犯的 我初学也遇到 多数是标点符号导致。。有个小技巧 把C语言程序全部复制到word 或txt文件里 看看有没有多余的符号 或错误的分号 之类的。。。这些是由于输入法不对导致的。。

相似回答