帮帮忙啊 看一下 下面的C++程序哪里出错了??谢谢 #include <iostream> using namespace std; int main {

这是报错
unexpected token '{' following declaration of 'main'
下面的是代码
#include <iostream>
using namespace std;
int main
{
int a,b;
a=1;
b=1;
for(a=1;a<10;a++)
{
for(b=1;b<10;b++)
{
cout<<a<<"*"<<b<<"="<<a*b;
cout<<endl;
}
}
return 0;
}

main后面的括号没加
int main()
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-10-21
#include <iostream>

using namespace std;
int main()
{
int a,b;
a=1;
b=1;
for(a=1;a<10;a++)
{
for(b=1;b<=a;b++)
cout<<b<<"*"<<a<<"="<<a*b<<" ";
cout<<endl;
}
return 0;
}
第2个回答  2011-10-21
这么明显的错误。。main(){主函数体}。。。你少了()main 函数也是函数啊。。也需要参数列表的,默认没参数你不能把()省了啊

帮忙看一下这个C++程序里哪里出错了(生成是成功的,但无法运行),谢谢各位...
include<iostream> using namespace std;class Student { public:Student();\/\/添加个默认构造函数 double score;static double total;static int count;void scoretotalcount(double);static double sum();static double average();};double Student::total=0;int Student::count=0;Student::Student()\/...

帮忙看下这段C++代码哪里出错?(输出后firstname和lastname都为空白...
include <iostream> include<string> using namespace std;struct student { string firstname;string lastname;int age;int pointsearned;int pointspossible;};void input(student *p){ cout<<"Please input one student record:"<<endl;cin>> p->firstname >> p->lastname >> p->age >> p...

哪位高手帮我看下这个C++程序哪里出错了,是重载运算符的
include <cmath>\/\/ using namespace std;\/\/ class point { double x,y;public:point (double x0=0, double y0=0)\/\/函数“point::point(double,double)”已有主体,所以删了下面一段 { x=x0;y=y0;} point operator + (point pt2);double operator ^ (point pt2);void display();};...

求高手帮忙解决下面这个C++中的一个题目。看俺的代码哪里有错...
你有几个地方有错误:1.求个位数,直接用n%10就可以了,你那样子是求的最高位的值 2.既然你已经定了个位为7,直接给m赋7就可以了吧。3.你上面那样子算的时候,最后退出第一个while循环的时候,n是为0的,下面不能用这个n计算,你若是不断的用n\/=10,开始应该用个变量保存这个n的值 4.还...

帮忙看一下这段c++代码的错误~谢谢~
include<iostream> using namespace std; \/\/加了这个 include<conio.h> void main(){ cout <<"please input the b key to hear a bell.\\n";char ch=getche();if (ch=='b')cout <<'\\a';else if (ch=='\\n') \/\/\\n 应该为换行,在键盘里面有这个键吗,我猜你的意思时想按了回车...

高手们,帮忙看下这个C++程序的错误在哪里? 我想找出矩阵中最大的数...
以下是我给你修改后的程序:(只是一个小错误,传参问题哈)自己看吧,能写出来就能看得懂,这肯定没问题 include<iostream> include<iomanip> include<cmath> include<string> using namespace std;int m,n,k,p,q;void hey(int c[4][4],int *a,int *b);int main(){int c[4][4],i,j;...

跪求大神找出此C++程序的error,并加以改正(最好自己先调试),本人新人...
include<iostream>using namespace std;int main(){ int year,month,date,result; cout<<"请输入年份:"<<endl; cin>>year; if(year%4==0&&year%100!=0||year%400==0) {\/\/这个地方添了一个大括号,不然下面的else不能和这个if匹配 cout<<year<<"是闰年"<<endl; ...

谁帮我看一下这个C++程序错在哪里啊?刚开始学函数………
这里输入错了 是j < = 2 * i -1啊 2i当然不认喽 include<iostream.h> void printstar ();void printstars (int n);int main (){ int n;printstar ();cout<<"请输入行数";cin>>n;printstars (4);return 0;} void printstar (){ cout<<" #\\n";cout<<" ###\\n";c...

求高手帮忙看看这个C++求和公式哪里出错了??
char* argv[]。如果你要定义这个。在开头加#include"string.h". 就算你这样还是会出错的。你的定义出错了你的原句int void main(int argc, char* argv[])这里不能在之前定义int。要不然字符串转换不过来,会出错的。你可以改成这个void main(int argc,char* argv[]).你先试下 ...

求高人指点一下我以下的错误百出的c++程序。。。因为我自己看不懂编译...
include<iostream> include<string> using namespace std;class Student { string name;int num[8];float c;float eng;float math;Student(){ name="xiaoming";num[8]=22221111;c=88;eng=99;math=77;} float sum(){ return c+eng+math;} float avg(){ return (c+eng+math)\/3;} void ...

相似回答