1111.c(34): error C141: syntax error near 'void'

void tim(void) interrupt 1 using 1 //?????TR0
{ TH0=0xd8; //????
TL0=0xf0;
count++;
if(count==100) //100*10ms=1?
{ count=0;
second--; //??1 }
}
void delay(uint z) } //????
{ uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--); }
void display (uchar shiwei,gewei,xuanshou) //????
{ P2=0xfe; //???????????
P0=shiwei; //????
delay(5);
P2=0xfd; //????
P0=gewei;
delay(5);
P2=0xf7; //????
P0=xuanshou;
delay(5);
}

注意,1111.c(34),表明你的c语言程序在第34行出现了一个错误,错误的具体类型在字符串" void "附近,你可以仔细看看,找找小错误小细节。

希望以上可以对你有所帮助,望采纳~~
温馨提示:内容为网友见解,仅供参考
第1个回答  2018-05-08
第一个函数结尾缺少 } 了
第二个函数一开始又来个 }
第2个回答  2018-05-08
看看前几行,是不是漏了大括号或是分号啥的。

1111.c(34): error C141: syntax error near 'void'
注意,1111.c(34),表明你的c语言程序在第34行出现了一个错误,错误的具体类型在字符串" void "附近,你可以仔细看看,找找小错误小细节。希望以上可以对你有所帮助,望采纳~~

单片机通过移位方式做流水灯项目
delay(200)---这里少了分号。P1<<=1;P1|=0x01;}

OO.C(40): error C129: missing ';' before '.'什么意思
意思是:第40行缺少分号。

fatal error C1004: unexpected end of file found
system("C:\\123.exe");fclose(fp);} printf("密码错误!\\n按任意键重新输入!\\a");getchar();goto m_here;} case'2':{ FILE*fp;printf("请输入账号:");scanf("%s",zh);fp=fopen(zh,"w");printf("\\n请输入密码:");getchar();gets(mm);fputs(mm,fp);fclose(fp);} default...

...这是一道求最大公约数的题目。。 Error:Declaration syntax...
(x+y+z+w)q=1111,说明q是1111的约数。又因为a,b,c,d大于0,因此x+y+z+w>=4,要使q最大,则要使x+y+z+w最小,即寻找1111的大等于4的最小的因数。而1111=11*101,其大等于4的最小因数为11,因此取x+y+z+w=11,q=101即可。比如x=1,y=2,z=3,w=5,这四个数是101,202,...

STOP:0X00000019(0X00000020,0XE1AT2648,0XE1A72658,0X0C020201)_百度...
28 0x001c 印表机没有纸。 29 0x001d 系统无法将资料写入指定的磁碟机。 30 0x001e 系统无法读取指定的装置。 31 0x001f 连接到系统的某个装置没有作用。 32 0x0020 进程并占用并不能访问文件 33 0x0021 档案的一部份被锁定,现在无法存取。 34 0x0022 磁碟机的磁片不正确。请将 %2 (volume serial ...

...ERROR: unknown virtual device name: '1111' emulator: could no...
…因此,没有设置ANDROID_SDK_HOME变量的情况下,如果你没有修改过Windows的"我的文档"路径,启动AVD是没有问题的。但是如果修改过,就会出现下面的错误:emulator: ERROR: unknown virtual device name: 'my_avd'emulator: could not find virtual device named 'my_avd'解决方法:添加ANDROID_SDK_HOME...

已经在其他文件中定义, fatal error LNK1169: 找到一个或多个多重定义...
头文件不得包含变量定义和函数体,否则被包含一次,这些变量、函数就被重新定义,从而导致这个问题。把变量定义放到一个源文件中,然后在头文件中写成 extern bool bGolbal ;

c++迷宫问题求帮助!error C2784: 'bool __cdecl std::operator ==(cons...
void footprint(coordinate curpos){ b[curpos.x][curpos.y]=0;} coordinate nextpos(coordinate curpos,int t){ switch (t){ case 1: curpos.x++;case 2: curpos.y++;case 3: curpos.x--;case 4: curpos.y--;} return curpos;} bool mazepath(coordinate start,coordinate end){ postyp...

AVR studio error: expected expression before '=' token
define LED2_0N() ( PORTC=0B11111101 )这里LED2_0N,后面是ON,字母O和数字0写错了 \/\/电机控制端A,B操作定义 define MA_0() ( PORTC & =~_BV(PB0) )define MA_1() ( PORTC | = _BV(PB0) )define MB_0() ( PORTC & =~_BV(PB1) )define MB_1() ( PORTC...

相似回答