도움이 되었습니까?

문제


In this tutorial, we will be discussing a program to find maximum points of intersection n circles

For this we will be provided with the number of circles. Our task is to find the maximum number of intersections the given number of circles meet.

Example

 Live Demo

#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;
}

Output

6
raja
Published on 09-Sep-2020 12:16:37

도움이 되었습니까?
제휴하지 않습니다 Tutorialspoint
scroll top