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
广告