C++ 中 n 个圆的最大交点数


在本教程中,我们将讨论一个程序,该程序用于找出 n 个圆的最大交点

为此,我们将获得圆的数量。我们的任务是找出给定数量的圆相交的最大数量。

示例

 实时演示

#include <bits/stdc++.h>
using namespace std;
//returning maximum intersections
int intersection(int n) {
   return n * (n - 1);
}
int main() {
   cout << intersection(3) << endl;
   return 0;
}

输出

6

更新于: 09-Sep-2020

114 次浏览

开启您的 职业生涯

参加课程并获得认证

开始学习
广告