知识库

C++语言开发示例:06. 转换函数

2025-02-01 20:10:46 李腾 1 次阅读

convert.cpp

#include <iostream>

int stonetolb(int);

int main()
{
    using namespace std;
    int stone;
    cout << "Enter the weight in stone: ";
    cin >> stone;
    int pounds = stonetolb(stone);
    cout << stone << " stone = ";
    cout << pounds << " pounds." << endl;
    return 0;
}

int stonetolb(int sts)
{
    return 14 * sts;
}
转载请注明转自www.hylab.cn,原文地址:C++语言开发示例:06. 转换函数

评论 (0)

登录后发表评论

暂无评论,快来发表第一条评论吧!