keil程序中出现的一些错误,warning C206:'While': missing function-prototype
#include<reg51.h>#include<intrins.h>#defineucharunsignedchar#defineuintunsignedint//延...
#include <reg51.h>
#include <intrins.h>
#define uchar unsigned char
#define uint unsigned int
//延时
void DelayMS(uint x)
{
uchar i;
while(x--)
{
for(i = 0; i < 120; i++) ;
}
}
//主程序
void main()
{
uchar i;
P2 = 0x01;
whlie(1)
{
for(i = 0; i < 7; i++)
{
P2 = _crol_(P2, 1);//P2的值向左循环移动
DelayMS(150);
}
for(i = 0; i < 7; i++)
{
P2 = _cror_(P2, 1);//P2的值向右循环移动
DelayMS(150);
}
}
}
错误:
warning C206:'While': missing function-prototype
error C267: 'While':requires ANSI-style prototype
error c141:syntax error near '{'
请问问题到底出现在哪里? 展开
#include <intrins.h>
#define uchar unsigned char
#define uint unsigned int
//延时
void DelayMS(uint x)
{
uchar i;
while(x--)
{
for(i = 0; i < 120; i++) ;
}
}
//主程序
void main()
{
uchar i;
P2 = 0x01;
whlie(1)
{
for(i = 0; i < 7; i++)
{
P2 = _crol_(P2, 1);//P2的值向左循环移动
DelayMS(150);
}
for(i = 0; i < 7; i++)
{
P2 = _cror_(P2, 1);//P2的值向右循环移动
DelayMS(150);
}
}
}
错误:
warning C206:'While': missing function-prototype
error C267: 'While':requires ANSI-style prototype
error c141:syntax error near '{'
请问问题到底出现在哪里? 展开
展开全部
P2 = _cror_(P2, 1);//P2的值向右循环移动
追问
请问哪里出问题了?
追答
C语言是区分大小写
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
void DelayMS(uint x)
{
uchar i;
while(x--)
{
for(i = 0; i < 120; i++) ;
}
改成这样试试
void DelayMS(uint x)
{ uchar i;
for(; x>0; x--)
for(i=0; i<120; i++);
}
{
uchar i;
while(x--)
{
for(i = 0; i < 120; i++) ;
}
改成这样试试
void DelayMS(uint x)
{ uchar i;
for(; x>0; x--)
for(i=0; i<120; i++);
}
来自:求助得到的回答
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询