知识库

C++语言开发示例:20. 除法

2025-02-01 20:23:03 李腾 1 次阅读

divide.cpp

#include <iostream>

int main()
{
    using namespace std;
    cout.setf(ios_base::fixed, ios_base::floatfield);
    cout << "Integer division: 9 / 5 = " << 9 / 5 << endl;
    cout << "Floating-point division: 9.0/5.0 = ";
    cout << 9.0 / 5.0 << endl;
    cout << "Mixed division: 9.0/5 = " << 9.0 / 5 << endl;
    cout << "double constants: 1e7/9.0 = ";
    cout << 1.e7 / 9.0 << endl;
    cout << "floating constants: 1e7f/9.0f = ";
    cout << 1.e7f / 9.0f << endl;
}
转载请注明转自www.hylab.cn,原文地址:C++语言开发示例:20. 除法

评论 (0)

登录后发表评论

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