C语言FOR语句已经定义了变量。为什么还提示未声明?

2024-11-25 16:23:16
推荐回答(3个)
回答1:

#include "stdafx.h"
#include 

using namespace std;

int main()
{
int number;
for (int i=0;i<9;i++);//这里的分号要去掉,否则是一个空循环
{

for (int j=0;j<9;j++);//这里的分号要去掉,否则是一个空循环
{
number=i*10+j;
cout<
}
cout<
}
return 0;
}

回答2:

把定义的变量拿到外面试试
for ()没有分号
int main()
{
int number;
int i,j;
for (i=0;i<9;i++)
{

for ( j=0;j<9;j++)
{
number=i*10+j;
cout<
}
cout<
}
return 0;
}
你用的是VC吧 VC6.0好像不能在for循环里定义变量

回答3:

你的两个for语句后面多了个分号
可能是这个原因