我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ argument /'a:gju:mənt/ n. 争论,辩论,论点,论据 ]


请教vc++6.0

我的一个程序,编译没的问题,可LINK时同2不过
报错如下
------------------Configuration: complex1 - Win32 Debug--------------------
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/complex1.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.

complex1.exe - 1 error(s), 0 warning(s)

是什么 意思??
请教一下
拜一个
顶端 Posted: 2006-12-02 17:59 | [楼 主]
autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ lame /leim/ a. 瘸的,拐的;vt. 使跛,使腿瘸 ]


LS 意思是。。。。
顶端 Posted: 2006-12-02 18:31 | [1 楼]
autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ alike /ə'laik/ a. 相似的,相象折 ]


还有着个。。-


-------------------Configuration: cc - Win32 Debug--------------------
Compiling...
StdAfx.cpp
Compiling...

cc1.cpp
d:\vc\vc6.0\msdev98\myprojects\cc\cc1.cpp(31) : fatal error C1010: unexpected end of file while looking for precompiled header directive
Generating Code...
执行 cl.exe 时出错.

cc.exe - 1 error(s), 0 warning(s)
顶端 Posted: 2006-12-02 18:33 | [2 楼]
autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ hydrochloric // n. 盐酸 ]


没的人ma ?
自己来顶
顶端 Posted: 2006-12-02 18:35 | [3 楼]
autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ rise /raiz/ vi. 上升,上涨,升起,站起,起床,增强,起义;n. 增加,升高,加薪,高地,高坡 ]


Quote:
引用第9楼demonwar于2006-12-03 12:43发表的:
是不是LZ在建工程的时候把win32console选成了win32api程序了


没呀
顶端 Posted: 2006-12-03 14:29 | [4 楼]
autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ peril /'peril/ n. (严重的)危险,危险的事物 ]


Quote:
引用第7楼zhanwuya于2006-12-03 09:34发表的:
设置你的entry为
wWinMainCRTStartup
看看行不行

entry 都没找到
LS详细点哟
顶端 Posted: 2006-12-03 14:32 | [5 楼]
autium



性别: 帅哥 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 655
威望: 0
浮云: 1115
在线等级:
注册时间: 2006-10-16
最后登陆: 2009-02-24

5come5帮你背单词 [ walk /wo:k/ vi. & n. 步行,散步 ]


我的的代码如下:
简单的一个关于COMPLEX的类

// complex1.h: interface for the complex class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMPLEX1_H__01838DE6_29CF_48BE_9E9C_1A2D977C0B60__INCLUDED_)
#define AFX_COMPLEX1_H__01838DE6_29CF_48BE_9E9C_1A2D977C0B60__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class complex
{
public:
   bool operator==(const complex temp_complex);//==
   complex operator^();//conjugate(这个好像有点问题)
   complex operator=(const complex& temp_complex);//=
  complex operator-(const complex& temp_complex);//sub
   complex operator+(const complex& temp_complex);//add
   complex operator*(const complex& temp_complex);//mux
   complex operator/(const complex& temp_complex);//div
   void print(void) const;
   
  complex(double a=0.0,double b=0.0);
   virtual ~complex();
private:
   double real;
   double img;
};

#endif // !defined(AFX_COMPLEX1_H__01838DE6_29CF_48BE_9E9C_1A2D977C0B60__INCLUDED_)




// complex1.cpp: implementation of the complex class.
//
//////////////////////////////////////////////////////////////////////

#include <iostream.h>
#include "complex1.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////


complex::complex(double a=0,double b=0)
{
real=a;
img=b;
}


complex::~complex()
{

cout<<"The complex is deteted;"<<endl;
}



bool complex::operator==(const complex temp_complex)
{
return((real==temp_complex.real)&(img==temp_complex.img));
}

complex complex::operator=(const complex& temp_complex)
{ complex temp;
temp.real=temp_complex.real;
temp.img=temp_complex.img;
return temp;
}


complex complex::operator ^()
{
complex temp;
temp.real=real;
temp.img=img;
return temp;
}


complex complex::operator+(const complex& temp_complex)
{ complex temp;
temp.real+=temp_complex.real;
temp.img+=temp_complex.img;
return temp;
}

complex complex::operator-(const complex& temp_complex)
{ complex temp;
temp.real-=temp_complex.real;
temp.img-=temp_complex.img;
return temp;
}

complex complex::operator*(const complex& temp_complex)
{ complex temp;
temp.real=real*temp_complex.real-img*temp_complex.img;
temp.img=real*temp_complex.img+img*temp_complex.real;
return temp;
}

complex complex::operator/(const complex& temp_complex)
{ complex temp;
double temp1,temp2,temp3;
temp1=temp_complex.img*temp_complex.img+temp_complex.real*temp_complex.real;
temp2=real*temp_complex.real+img*temp_complex.img;
temp3=img*temp_complex.real-real*temp_complex.img;
temp.real=temp2/temp1;
temp.img=temp3/temp1;
return temp;
}
void complex:: print() const
{
cout<<"("<<real<<","<<img<<")"<<endl;
}


// complex.cpp : Defines the entry point for the console application.
//用来测试类COMPLEX功能的

#include "complex.h"
#include <iostream.h>


int main(int argc, char* argv[])
{
complex one(2,3),two(2),three;


cout<<"one="<<endl;
one.print();
cout<<"\n"<<endl;
cout<<"one="<<endl;
two.print();
cout<<"\n"<<endl;
cout<<"one="<<endl;
three.print();
cout<<"\n"<<endl;
 

if(one==two)cout<<"one is eqall to two"<<"\n"<<endl;

three=one+two;cout<<three.print()<<endl;
three=one-two;cout<<three.print()<<endl;
three=one*two;cout<<three.print()<<endl;
three=one/two;cout<<three.print()<<endl;
return 0;

}
顶端 Posted: 2006-12-03 19:18 | [6 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.010077(s) query 6, Time now is:11-23 22:21, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号