| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1448 人关注过本帖
标题:如何使用Visual Studio 2013 将两个源代码文件和新的头文件一起编译和链接, ...
只看楼主 加入收藏
醒山
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:9
帖 子:463
专家分:2071
注 册:2015-5-25
结帖率:88.89%
收藏
 问题点数:0 回复次数:1 
如何使用Visual Studio 2013 将两个源代码文件和新的头文件一起编译和链接,生成一个可执行程序?
如何使用Visual Studio 2013 将两个源代码文件和新的头文件一起编译和链接,生成一个可执行程序
例如
file2.ccp
#include<iostream>
#include<cmath>
#include"coordin.h"
polar rect_to_polar(rect xypos)
{

    using namespace std;
    polar answer;
    answer.distance =
        sqrt(xypos.x * xypos.x + xypos.y * xypos.y);
    answer.angle = atan2(xypos.y, xypos.x);
    return answer;
}
void show_polar(polar dapos)
{
    using namespace std;
    const double Rad_to_deg = 57.29577951;
    cout << "distance = " << dapos.distance;
    cout << ",angle = " << dapos.angle * Rad_to_deg;
    cout << " degrees\n";
}
file2.cpp
#include<iostream>
#include"coordin.h"
using namespace std;
int main()
{
    rect rplace;
    polar pplace;
    cout << "Enter the x and y value: ";
    while (cin >> rplace.x >> rplace.y)
    {
        pplace = rect_to _polar(rplace);
        show_polar(pplace);
        cout << "Next two numbers (q to quit): ";
    }
    cout << "Bye!\n";
    return 0;
}
coordin.h
#ifndef COORDIN_H_
#define COORDIN_H_
struct polar
{
    double distance;
    double angle;
};
struct rect
{
    double x;
    double y;
};
polar rect_to_polar(rect xypos);
void show_polar(polar dapos);
#endif
如何将它们一起编译,生成一个可以输入输出的可执行程序?
搜索更多相关主题的帖子: include 源代码 double return 
2015-11-03 17:22
醒山
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:9
帖 子:463
专家分:2071
注 册:2015-5-25
收藏
得分:0 
已经会弄了
2015-11-03 18:29
快速回复:如何使用Visual Studio 2013 将两个源代码文件和新的头文件一起编译和 ...
数据加载中...
 
   



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

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