[求助]九九乘法表
九九乘法表.cpp(3) : error C2239: unexpected token '{' following declaration of 'main'
错在那里??
#include<iostream>
int main
{
int a,b;
for(a=0,a<=9,a++);
for(b=0,b<=a,b++);
{
cout<<a&"*"&b&"="<<a*b<<" ";
}
cout<<endl;
}
2007-06-02 21:26

2007-06-03 11:10
2007-06-03 11:11