[求助]九九乘法表
九九乘法表.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;
}
99乘法表如下:
#include <stdio.h>
void main()
{
}
兄弟你这个程序错太多了
首先#include<iostream.h>
int main ()
其次 for语句后面不应有分号,其括号内应是三条语句,故改逗号为分号;
还有 cout 语句有问题
还忘了一句 主函数还要加一句 return 0;