| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 284 人关注过本帖
标题:简单c++中的函数,求解
只看楼主 加入收藏
清洁皇帝
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2015-4-7
结帖率:0
收藏
已结贴  问题点数:20 回复次数:2 
简单c++中的函数,求解
//运行错误??


#include "stdafx.h"
#include "iostream"
using namespace std;
double perimeter(double wid, double hei)
{
    return (wid+hei)*2;
};//周长函数
double area(double wid, double hei)
{
    return wid*hei;
};//面积函数
int _tmain(int argc, _TCHAR* argv[])
{
    double width,height;//定义变量参数
    cout<<"enter width and height:"<<endl;
    cin>>width>>height;//输入宽与高
    cout<<"perimeter="<<perimeter(width ,height)<<endl;
    cout<<"area="<<area(width ,height)<<endl;
    system("pause");
    return 0;
};
搜索更多相关主题的帖子: include double return 
2015-04-07 22:51
Vsnow
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:124
专家分:145
注 册:2015-1-3
收藏
得分:20 
//#include <stdafx.h>    //sorry,VC6.0中没有这个头文件,所以注释了
#include <iostream>
using namespace std;
double perimeter(double wid,double hei)
{
    return (wid+hei)*2;
};//周长函数
double area(double wid,double hei)
{
    return wid*hei;
};//面积函数
int main()        //重点就是楼主都没有写主函数 int _tmain(int argc, _TCHAR* argv[])这是楼主写的,除非你是想调用这个函数。
{
    double width,height;//定义变量参数
    cout<<"enter width and height:"<<endl;
    cin>>width>>height;//输入宽与高
    cout<<"perimeter="<<perimeter(width ,height)<<endl;
    cout<<"area="<<area(width ,height)<<endl;
    system("pause");
    return 0;
};
2015-04-08 18:56
清洁皇帝
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2015-4-7
收藏
得分:0 
回复 2楼 Vsnow
2楼,你好,谢谢你回帖,c++中的每个源程序不是都有头文件#include "stdafx.h"吗,我用的编译软件是vs2008哦,我把你改后的程序运行了一下不行哦,我还是用定义类和对象做吧
2015-04-08 20:59
快速回复:简单c++中的函数,求解
数据加载中...
 
   



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

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