c语言 div ldiv_C ++中带有示例的ldiv()函数

c语言 div ldiv

C ++ ldiv()函数 (C++ ldiv() function)

ldiv() function is a library function of cstdlib header. It is used for integral division, it accepts two parameters (numerator and denominator) and returns a structure that contains the quot (quotient) and rem (remainder).

ldiv()函数cstdlib标头的库函数。 它用于整数除法,它接受两个参数( 分子分母 ),并返回一个包含quot ( )和rem ( remaind )的结构。

Syntax of ldiv() function:

ldiv()函数的语法:

C++11:

C ++ 11:

    ldiv_t ldiv (long int numer, long int denom);

Parameter(s):

参数:

  • numer – represents the value of numerator.

    numer –代表分子的值。

  • denom – represents the value of denominator.

    denom –代表分母的值。

Return value:

返回值:

The return type of this function is ldiv_t, returns a structure that contains the quot (quotient) and rem (remainder).

该函数的返回类型为ldiv_t ,返回一个包含quot ( quotient )和rem ( 其余部分 )的结构。

Example:

例:

    Input:
long int n = 123456789;
long int d = 12345678;
ldiv_t result;
Function call:
result = ldiv(n, d);
Output:
result.quot = 10
result.rem = 9

C ++代码演示ldiv()函数的示例 (C++ code to demonstrate the example of ldiv() function)

// C++ code to demonstrate the example of
// ldiv() function
#include <iostream>
#include <cstdlib>
using namespace std;
// main() section
int main()
{
long int n = 123456789;
long int d = 12345678;
ldiv_t result;
result = ldiv(n, d);
cout << "Numerator  : " << n << endl;
cout << "Denominator: " << d << endl;
cout << "Quotient   : " << result.quot << endl;
cout << "Remainder  : " << result.rem << endl;
cout << endl;
n = 999988887777;
d = 1112223334;
result = ldiv(n, d);
cout << "Numerator  : " << n << endl;
cout << "Denominator: " << d << endl;
cout << "Quotient   : " << result.quot << endl;
cout << "Remainder  : " << result.rem << endl;
cout << endl;
n = 100100234;
d = 9878762536;
result = ldiv(n, d);
cout << "Numerator  : " << n << endl;
cout << "Denominator: " << d << endl;
cout << "Quotient   : " << result.quot << endl;
cout << "Remainder  : " << result.rem << endl;
cout << endl;
return 0;
}

Output

输出量

Numerator  : 123456789
Denominator: 12345678
Quotient   : 10
Remainder  : 9
Numerator  : 999988887777
Denominator: 1112223334
Quotient   : 899
Remainder  : 100110511
Numerator  : 100100234   
Denominator: 9878762536
Quotient   : 0
Remainder  : 100100234

Reference: C++ ldiv() function

参考: C ++ ldiv()函数

翻译自: https://www.includehelp.com/cpp-tutorial/ldiv-function-with-example.aspx

c语言 div ldiv

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544059.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

网盘搜索

http://pan.java1234.com1、在http://baidu.com的搜索框中输入&#xff1a;site:http://pan.baidu.com 搜索词&#xff08;回复中林涛同学建议第一条如果用谷歌搜site:百度网盘的话效果会好一点&#xff09;2、壹搜 网盘搜索引擎3、盘易搜 盘易搜-百度网盘搜索4、BD盘搜索 百度…

如何防止订单重复支付?

大家好&#xff0c;我是磊哥&#xff0c;想必大家对在线支付都不陌生&#xff0c;今天和大家聊聊如何防止订单重复支付。看看订单支付流程我们来看看&#xff0c;电商订单支付的简要流程&#xff1a;订单钱包支付流程从下单/计算开始&#xff1a;下单/结算&#xff1a;这一步虽…

c ++atoi函数_atoi()函数以及C ++中的示例

c atoi函数C atoi()函数 (C atoi() function) atoi() function is a library function of cstdlib header. It is used to convert the given string value to the integer value. It accepts a string containing an integer (integral) number and returns its integer valu…

IOS沙盒中的Documents、Library、tmp区别

1.Documents&#xff1a; 用户生成的文件、其他数据及其他程序不能重新创建的文件&#xff0c;iTunes备份和恢复的时候会包括此目录。 2.Library/Caches&#xff1a; 可以重新下载或者重新生成的数据,数据库缓存文件和可下载内容应该保存到这个文件夹,iTunes不会备份此目录&…

3 分钟快速上手 Spring 事件机制

小伙伴们好呀~ 今天来和大家分享下这个 Spring事件机制内容概览image-20210829132019387原理image-20210828184103069这个熟悉 观察者模式 的小伙伴应该一眼就看出来啦~其实就是个简单版的 发布-订阅模式有三个核心类&#x1f447;事件 ApplicationEvent事件发布器 Application…

mis dss gis_MIS中的决策支持系统(DSS)

mis dss gisThe Decision Support System is always helpful to management people to take decisions/decisions and finds the key business insights from available information systems. 决策支持系统始终有助于管理人员做出决策/决策&#xff0c;并从可用的信息系统中找到…

使用Grunt构建自动化开发环境

1、准备工作 1&#xff09;首页确保电脑上网&#xff0c;以及能够访问https://registry.npmjs.org/&#xff0c;因需从此网站中下载安装相应的插件; 2&#xff09;电脑安装Node.js&#xff0c;Grunt及Grunt插件都是基于node.js运行的&#xff1b;如果你电脑上未装node.js&#…

面试突击66:请求转发和请求重定向有什么区别?

作者 | 磊哥来源 | Java面试真题解析&#xff08;ID&#xff1a;aimianshi666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;在 Java 中&#xff0c;跳转的实现方式有两种&#xff1a;请求转发和请求重定向&#xff0c;但二者是完全不同的&…

python 示例_带有示例的Python列表copy()方法

python 示例列出copy()方法 (List copy() Method) copy() method is used to copy a list, the method is called with this list (current/original list) and returns a list of the same elements. copy()方法用于复制列表&#xff0c;该方法与此列表一起调用(当前/原始列表…

99%的Java程序员会踩的6个坑

前言作为Java程序员的你&#xff0c;不知道有没有踩过一些基础知识的坑。有时候&#xff0c;某个bug&#xff0c;你查了半天&#xff0c;最后发现竟然是一个非常低级的错误。有时候&#xff0c;某些代码&#xff0c;这一批数据功能正常&#xff0c;但换了一批数据就出现异常了。…

输出一个数的二进制序列中1的个数(三种方法)

由于这个数有可能是负数&#xff0c;负数在计算机中以补码的方式存储&#xff0c;要求负数的补码中1的个数依然可以正确输出&#xff0c;方法如下&#xff1a;1、定义这个数的变量类型为无符号整型&#xff08;unsigned int&#xff09;代码为include<stdio.h>int count_…

BigDecimal 的 4 个坑,你踩过几个?

背景 一直从事金融相关项目&#xff0c;所以对BigDecimal再熟悉不过了&#xff0c;也曾看到很多同学因为不知道、不了解或使用不当导致资损事件发生。所以&#xff0c;如果你从事金融相关项目&#xff0c;或者你的项目中涉及到金额的计算&#xff0c;那么你一定要花时间看看这篇…

Windows Server 2012 R2 里面如何安装Net Framework 3.5

图示 不要慌&#xff0c;和windows是不一样的&#xff0c;没有问题 下一步 默认即可&#xff0c;下一步 这里面的东西以后会装&#xff0c;先不管&#xff0c;我们今天目的是装 net framework 3.5 选一下 正在安装 如果出错了请参考&#xff1a; http://www.2cto.com/os/201410…

python计算连续复利_复利的Python程序

python计算连续复利Given principle amount, rate and time and we have to find the compound interest in Python. 给定原理量&#xff0c;速率和时间&#xff0c;我们必须找到Python的复利 。 计算复利 (Calculate compound interest) To calculate compound interest, we …

聊聊Java中代码优化的30个小技巧

今天我们一起聊聊Java中代码优化的30个小技巧&#xff0c;希望会对你有所帮助。1.用String.format拼接字符串不知道你有没有拼接过字符串&#xff0c;特别是那种有多个参数&#xff0c;字符串比较长的情况。比如现在有个需求&#xff1a;要用get请求调用第三方接口&#xff0c;…

scala 字符串函数_Scala中的字符串chomp(或chop)函数

scala 字符串函数剁或剁弦 (Chop or Chomp string) It is used to chop off the end of line characters. For this Scala has an inbuilt method stripLineEnd. 它用于截断行尾字符。 为此&#xff0c;Scala具有内置方法stripLineEnd 。 Syntax: 句法&#xff1a; string.st…

Linux扩展根分区大小

1、查看当前逻辑卷的分布df -h2、卸载home分区umount /home注意&#xff1a;无法卸载时候&#xff0c;使用以下命令结束进程&#xff1a;fuser -m /home3、调整home分区大小为20Gresize2fs -p /dev/mapper/VolGroup-lv_home 20G4、检查home分区e2fsck -f /dev/mapper/VolGroup-…

面试突击69:TCP 可靠吗?为什么?

作者 | 磊哥来源 | Java面试真题解析&#xff08;ID&#xff1a;aimianshi666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;相比于 UDP 来说&#xff0c;TCP 的主要特性是三个&#xff1a;有连接、可靠、面向数据流。所谓的“有连接”指的是 …

vc++中画线时xor_C ++'xor_eq'关键字和示例

vc中画线时xor"xor_eq" is an inbuilt keyword that has been around since at least C98. It is an alternative to ^ (EXCLUSIVE-OR Assignment) operator and it mostly uses for bit manipulations. “ xor_eq”是一个内置关键字&#xff0c;至少从C 98起就存在…

【学习笔记】java核心技术学习笔记整理

《java核心技术》 花了半天到一天又认真读了一下java核心技术中的类部分&#xff0c;感觉最近编程时候好多迷迷糊糊&#xff0c;“这样对不对呢&#xff0c;试一试。怎么不对呢”这类的迷糊问题原来都早有定义。 main函数必须在主类中 一个class就是一个机器&#xff0c;要使…