| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2059 人关注过本帖
标题:大家看看这个程序,为什么有这么多错误
只看楼主 加入收藏
lieutenant91
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-9-15
收藏
 问题点数:0 回复次数:7 
大家看看这个程序,为什么有这么多错误

!#include "iostream.h"
#include "iomanip.h"
#define N 20 //学习样本个数
#define IN 1 //输入层神经元数目
#define HN 8 //隐层神经元数目
#define ON 1 //输出层神经元数目
double P[IN]; //单个样本输入数据
double T[ON]; //单个样本教师数据
double W[HN][IN]; //输入层至隐层权值
double V[ON][HN]; //隐层至输出层权值


double X[HN]; //隐层的输入
double Y[ON]; //输出层的输入
double H[HN]; //隐层的输出
double O[ON]; //输出层的输出
double sita[HN]; //隐层的阈值
double gama[ON]; //输出层的阈值
double err_m[N]; //第m个样本的总误差
double alpha; //输出层至隐层的学习效率
double beta; //隐层至输入层学习效率
//定义一个放学习样本的结构
struct {
double input[IN];
double teach[ON];
}Study_Data[N][IN];

///////////////////////////
//初始化权、阈值子程序/////
///////////////////////////
initial()
{
float sgn;
float rnd;


int i,j;
//隐层权、阈值初始化//
{
//sgn=pow((-1),random(100));
sgn=rand();
rnd=sgn*(rand()%100);
W[j]= rnd/100;//隐层权值初始化。
}
//randomize();
{
//sgn=pow((-1),random(1000));
sgn=rand();
rnd=sgn*(rand()%1000);
sita[j]= rnd/1000;//中间层阈值初始化
cout<<"sita"<<sita[j]<<endl;
}
//输出层权、阈值初始化//
//randomize();
for (int k=0;k<ON;k++)
for (int j=0;j<HN;j++)
{
//sgn=pow((-1),random(1000));


sgn=rand();
rnd=sgn*(rand()%1000);
V[k][j]=rnd/1000;//第m个样本输出层权值初始化
}
//randomize();
{
//sgn=pow((-1),random(10));
sgn=rand();
rnd=sgn*(rand()%10);
gama[k]=rnd/10;//输出层阈值初始化
cout<<"gama[k]"<<endl;
}
return 1;

}//子程序initial()结束


////////////////////////////////
////第m个学习样本输入子程序///
///////////////////////////////
input_P(int m)
{


for (int i=0;i<IN;i++)
P=Study_Data[m]->input;
//获得第m个样本的数据
//cout<<"第"< //fprintf(fp,"第%d个样本的学习输入:
//P[%d]=%f\n",m,P);
return 1;
}//子程序input_P(m)结束

/////////////////////////////
////第m个样本教师信号子程序//
/////////////////////////////
input_T(int m)
{
for (int k=0;k<m;k++)
T[k]=Study_Data[m]->teach[k];
//cout<<"第"< //fprintf(fp,"第%d个样本的教师信号:T[%d]=%f\n",m,T[k]);
return 1;
}//子程序input_T(m)结束

/////////////////////////////////
//隐层各单元输入、输出值子程序///
/////////////////////////////////


H_I_O(){
double sigma;
int i,j;
for (j=0;j<HN;j++)
sigma=0.0;
for (i=0;i<IN;i++)
sigma+=W[j]*P;//求隐层内积
}
X[j]=sigma - sita;//求隐层净输入
H[j]=1.0/(1.0+exp(-X[j]));//求隐层输出
}
return 1;
}//子程序H_I_O()结束

///////////////////////////////////
//输出层各单元输入、输出值子程序///
///////////////////////////////////
O_I_O()
{
double sigma;
for (int k=0;k<ON;k++)
sigma=0.0;


for (int j=0;j<HN;j++)
sigma+=V[k][j]*H[k];//求输出层内积
}
Y[k]=sigma-gama[k]; //求输出层净输入
O[k]=1.0/(1.0+exp(-Y[k]));//求输出层输出
}
return 1;
}//子程序O_I_O()结束

////////////////////////////////////
//输出层至隐层的一般化误差子程序////
////////////////////////////////////
double d_err[ON];
Err_O_H(int m)
{
double abs_err[ON];//每个样本的绝对误差都是从0开始的
double sqr_err=0;//每个样本的平方误差计算都是从0开始的
//for (int output=0;output<ON;output++) //output???
for (int k=0;k<ON;k++)
abs_err[k]=T[k]-O[k];
//求第m个样本下的第k个神经元的绝对误差
sqr_err+=(abs_err[k])*(abs_err[k]);//求第m个样本下输出层的平方误差

d_err[k]=abs_err[k]*O[k]*(1.0-O[k]);//d_err[k]输出层各神经元的一般化误差
}
err_m[m]=sqr_err/2;//第m个样本下输出层的平方误差/2=第m个样本的均方误差
return 1;
}//子程序Err_O_H(m)结束

////////////////////////////////////
//隐层至输入层的一般化误差子程序////
////////////////////////////////////
double e_err[HN];
Err_H_I(){
double sigma;
//for (int hidden=0;hidden
for (int j=0;j<HN;j++)
sigma=0.0;
for (int k=0;k<ON;k++)
sigma=d_err[k]*V[k][j];
}
e_err[j]=sigma*H[j]*(1-H[j]);//隐层各神经元的一般化误差
}
return 1;


}//子程序Err_H_I()结束

////////////////////////////////////////////////////////
//输出层至隐层的权值调整、输出层阈值调整计算子程序//////
////////////////////////////////////////////////////////
Delta_O_H(int m,FILE* fp)
{
for (int k=0;k<ON;k++)
for (int j=0;j<HN;j++)
//cout<<"第"< fprintf(fp,"第%d个样本时的输出层至隐层的权值为:%f\n",m,W[k][j
]);
V[k][j]+=alpha*d_err[k]*H[j];//输出层至隐层的权值调整
}
gama[k]+=alpha*d_err[k];//输出层至隐层的阈值调整
}
return 1;
}//子程序Delta_O_H()结束

////////////////// ///////////////////////////////////
//隐层至输入层的权值调整、隐层阈值调整计算子程序/////
/////////////////////////////////////////////////////
Delta_H_I(int m,FILE* fp)


{
for (int j=0;j<HN;j++)
for (int i=0;i<IN;i++)
//cout<<"第"< fprintf(fp,"第%d个样本时的输出层至隐层的权值为:%f\n",m,V[j]
);
W[j]+=beta*e_err[j]*P;//隐层至输入层的权值调整
}
sita[j]+=beta*e_err[j];
}
return 1;
}//子程序Delta_H_I()结束

/////////////////////////////////
//N个样本的全局误差计算子程序////
/////////////////////////////////
double Err_Sum()
{
double total_err=0;
for (int m=0;m<N;m++)
total_err+=err_m[m];//每个样本的均方误差加起来就成了全局误差
}
return 1;


}//子程序Err_sum()结束

/**********************/
/**程序入口,即主程序**/
/**********************/
main()
{
FILE *fp;
double sum_err;
int study;//训练次数

if ((fp=fopen("bp.txt","a+"))==NULL)
{
printf("不能创建bp.txt文件!\n");
exit(1);
}
cout<<"请输入输出层到隐含层学习效率: alpha=\n";
cin>>alpha;

cout<<"请输入隐含层到输入层学习效率: beta=\n";
cin>>beta;

int study=0; //学习次数
double Pre_error ; //预定误差
cout<<"请输入预定误差: Pre_error= \n";
cin>>Pre_error;

int Pre_times;
cout<<"请输入预定最大学习次数:Pre_times=\n";
cin>>Pre_times;

cout<<"请输入学习样本数据\n";
{
for (int m=0;m<N;m++)
cout<<"请输入第"<<m+1<<"组学习样本"<<endl;
for (int i=0;i<IN;i++)
cin>>Study_Data[m]->input;
}
{
for (int m=0;m<N;m++)
cout<<"请输入第"<<m+1<<"组教师样本"<<endl;
for (int k=0;k<ON;k++)
cin>>Study_Data[m]->teach[k];
}

initial(); //隐层、输出层权、阈值初始化 (1)
do
{
++study; ///???
for (int m=0;m<N;m++)
{
input_P(m); //输入第m个学习样本 (2)
input_T(m);//输入第m个样本的教师信号 (3)
H_I_O(); //第m个学习样本隐层各单元输入、输出值 (4)
O_I_O(); //第m个学习样本输出层各单元输入、输出值 (5)
Err_O_H(m); //第m个学习样本输出层至隐层一般化误差 (6)
Err_H_I(); //第m个学习样本隐层至输入层一般化误差 (7)
Delta_O_H(m,fp); //第m个学习样本输出层至隐层权阈值调整、修改 (8)
Delta_H_I(m,fp); //第m个学习样本隐层至输入层权阈值调整、修改 (9)
} //全部样本训练完毕

sum_err=Err_Sum(); //全部样本全局误差计算 (10)
{
cout<<"第"<<study<<"次学习的均方误差为"<<sum_err<<endl;
fprintf(fp,"第%d次学习的均方误差为:%f\n",study,sum_err);
}


while (sum_err > Pre_error) //or(study
{ //N个样本全局误差小于预定误差否? 小于则退出 (11)
cout<<"网络已经学习了"<<study<<"次,学习的均方误差为"<<sum_err<<endl;
fprintf(fp,"网络已经学习了%d次,现在的全局误差为:%f\n",study,total_err);
fclose(fp);
}
char s;
cout<<"请随便输入一个字符,按回车退出程序!\n";
cin>>s;
return 1;
}

搜索更多相关主题的帖子: 神经元 define double 
2006-09-15 11:24
Bekky
Rank: 3Rank: 3
等 级:新手上路
威 望:7
帖 子:354
专家分:0
注 册:2006-5-29
收藏
得分:0 
为什么没有错误提示部分??
你不贴错误提示,想累死人啊?

我的编译环境为WinXp + VC 6.0 http://blog..cn/yobo
2006-09-15 11:32
lieutenant91
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-9-15
收藏
得分:0 

不好意思,下面是错误的提示
ompiling...
进展最新的源程序.cpp
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(2) : error C2143: syntax error : missing ';' before '/'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(2) : error C2018: unknown character '0xa3'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(2) : error C2018: unknown character '0xa1'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(2) : error C2014: preprocessor command must start as first nonwhite space
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(42) : error C2065: 'rand' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(42) : warning C4244: '=' : conversion from 'int' to 'float', possible loss of data
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(44) : error C2440: '=' : cannot convert from 'float' to 'double [1]'
There are no conversions to array types, although there are conversions to references or pointers to arrays
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(49) : warning C4244: '=' : conversion from 'int' to 'float', possible loss of data
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(62) : warning C4244: '=' : conversion from 'int' to 'float', possible loss of data
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(69) : warning C4244: '=' : conversion from 'int' to 'float', possible loss of data
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(87) : error C2106: '=' : left operand must be l-value
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(116) : error C2296: '*' : illegal, left operand has type 'double [1]'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(116) : error C2297: '*' : illegal, right operand has type 'double [1]'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(117) : warning C4508: 'H_I_O' : function should return a value; 'void' return type assumed
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2065: 'j' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2501: 'X' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2371: 'X' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(14) : see declaration of 'X'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2065: 'sigma' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(118) : error C2113: pointer can only be subtracted from another pointer
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(119) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(119) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(119) : error C2501: 'H' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(119) : error C2371: 'H' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(16) : see declaration of 'H'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(119) : error C2065: 'exp' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(119) : error C2440: 'initializing' : cannot convert from 'double' to 'int []'
There are no conversions to array types, although there are conversions to references or pointers to arrays
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(120) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(120) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(120) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(122) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(122) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(122) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(128) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(128) : error C2447: missing function header (old-style formal list?)
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(137) : error C2065: 'k' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(137) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(137) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(137) : error C2501: 'Y' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(137) : error C2371: 'Y' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(15) : see declaration of 'Y'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(137) : error C2440: 'initializing' : cannot convert from 'double' to 'int []'
There are no conversions to array types, although there are conversions to references or pointers to arrays
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(138) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(138) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(138) : error C2501: 'O' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(138) : error C2371: 'O' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(17) : see declaration of 'O'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(138) : error C2440: 'initializing' : cannot convert from 'double' to 'int []'
There are no conversions to array types, although there are conversions to references or pointers to arrays
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(139) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(139) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(139) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(141) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(141) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(141) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(157) : error C2065: 'd_err' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(157) : error C2109: subscript requires array or pointer type
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(157) : warning C4244: '=' : conversion from 'double' to 'int', possible loss of data
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(157) : error C2106: '=' : left operand must be l-value
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(158) : warning C4508: 'Err_O_H' : function should return a value; 'void' return type assumed
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2065: 'm' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2501: 'err_m' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2371: 'err_m' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(20) : see declaration of 'err_m'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2065: 'sqr_err' : undeclared identifier
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(159) : error C2440: 'initializing' : cannot convert from 'int' to 'int []'
There are no conversions to array types, although there are conversions to references or pointers to arrays
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(160) : error C2143: syntax error : missing ';' before 'return'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(161) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(161) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(161) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(173) : error C2109: subscript requires array or pointer type
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(174) : warning C4508: 'Err_H_I' : function should return a value; 'void' return type assumed
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(175) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(175) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(175) : error C2501: 'e_err' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(175) : error C2440: 'initializing' : cannot convert from 'double' to 'int []'
There are no conversions to array types, although there are conversions to references or pointers to arrays
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(176) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(176) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(176) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(180) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(180) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(180) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(186) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(186) : error C2447: missing function header (old-style formal list?)
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(193) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(193) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(193) : error C2143: syntax error : missing ';' before '+='
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(193) : error C2501: 'gama' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(193) : error C2371: 'gama' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(19) : see declaration of 'gama'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(193) : error C2143: syntax error : missing ';' before '+='
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(194) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(194) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(194) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(196) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(196) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(196) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(204) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(204) : error C2447: missing function header (old-style formal list?)
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(211) : error C2057: expected constant expression
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(211) : error C2466: cannot allocate an array of constant size 0
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(211) : error C2143: syntax error : missing ';' before '+='
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(211) : error C2501: 'sita' : missing storage-class or type specifiers
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(211) : error C2371: 'sita' : redefinition; different basic types
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(18) : see declaration of 'sita'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(211) : error C2143: syntax error : missing ';' before '+='
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(212) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(212) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(212) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(214) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(214) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(214) : error C2143: syntax error : missing ';' before '}'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(220) : error C2143: syntax error : missing ';' before '{'
c:\documents and settings\lr\桌面\进展最新的源程序.cpp(220) : fatal error C1003: error count exceeds 100; stopping compilation
Error executing cl.exe.

进展最新的源程序.exe - 102 error(s), 8 warning(s)

2006-09-15 14:10
冰山一角
Rank: 1
等 级:新手上路
帖 子:385
专家分:0
注 册:2006-9-5
收藏
得分:0 
太多了。

做程序员太乏味?来这里www..cn试试吧,你肯定能找到乐趣!
2006-09-15 14:49
Bekky
Rank: 3Rank: 3
等 级:新手上路
威 望:7
帖 子:354
专家分:0
注 册:2006-5-29
收藏
得分:0 
大部分是语法错误啊,你仔细看看,根据提示有一下几种错误:

=号两边数据类型不同。
丢掉语句结束符“;”。
有些变量或者函数未定义。
没有指定变量类型。
重复定义。

[此贴子已经被作者于2006-9-15 15:04:32编辑过]


我的编译环境为WinXp + VC 6.0 http://blog..cn/yobo
2006-09-15 15:04
osamaleiyu
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2006-5-22
收藏
得分:0 

楼主难道是写完程序再来编译的?

2006-09-15 16:25
youngky
Rank: 1
等 级:新手上路
威 望:1
帖 子:75
专家分:0
注 册:2006-3-31
收藏
得分:0 

你怎么弄出这么多的错误啊


2006-09-15 21:12
youngky
Rank: 1
等 级:新手上路
威 望:1
帖 子:75
专家分:0
注 册:2006-3-31
收藏
得分:0 
你是那个地方抄来的垃圾程序
弄成这样
郁闷死了
搞了半天都不知道是什么
书到用时方恨少啊

2006-09-15 21:24
快速回复:大家看看这个程序,为什么有这么多错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015691 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved