#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;
}
把定义的变量拿到外面试试
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循环里定义变量
你的两个for语句后面多了个分号
可能是这个原因