Drawing Lines - SGU 135(简单递推)

求N条直线最多能把一个平面分成几部分。

代码如下:

==============================================================================================================================

#include<stdio.h>
#include<algorithm>
#include<string.h>
#include<vector>
using namespace std; const int MAXN = ; int main()
{
int ans=, N; scanf("%d", &N); for(int i=; i<=N; i++)
ans += i; printf("%d\n", ans); return ;
}
上一篇:python异步初步窥探


下一篇:pyhton 面向对象之 小明左右手换牌