在C ++程序中将数字分为两部分

在本教程中,我们将编写一个程序,将给定的数字分为两部分

这是一个很简单的问题。我们可以通过跳开给定的数字来获得一个数字。我们可以通过从总数中减去结果来获得第二个数字。

如果给定数字为n,则两个数字为

a = n / 2

b = n - a

示例

让我们看一下代码。

#include <bits/stdc++.h>

using namespace std;

void divideTheNumber(int n) {

   int a = n / 2;

   int b = n - a;

   cout << a << " " << b << endl;

}

int main() {

   int n = 13;

   divideTheNumber(n);

}

输出结果

如果执行上述程序,则将得到以下结果。

6 7

结论

以上是 在C ++程序中将数字分为两部分 的全部内容, 来源链接: utcz.com/z/314288.html

回到顶部