gpt4 book ai didi

php - 使用php将整数分成3部分

转载 作者:行者123 更新时间:2023-12-02 06:18:33 25 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改善这个问题吗?通过 editing this post 添加详细信息并澄清问题.

8 年前关闭。




Improve this question




我需要使用 php 将一个整数值分成 3 部分

例如:我有一个值 9,答案是 3 + 3 + 3
如果我的值是 10,那么答案就像 3 + 3 + 4 或类似的东西

最佳答案

您可以使用模数函数。

<?php
$yourInt=10;
$remainder=$yourInt % 3;
$third=floor($yourInt/3);
$lastBit=$third+$remainder;

echo "The numbers are $third + $third + $lastBit.";
?>

输出:
The numbers are 3 + 3 + 4.

关于php - 使用php将整数分成3部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18610483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com