标签:折线 实例 行数据 -- 今天 找规律 http content math.h
#include<stdio.h> #include<math.h> #define ll long long int main() { ll a[10005]={0,2,7}; for(int i=3;i<10005;i++) a[i]=a[i-1]+2*2*(i-1)+1; int t; scanf("%d",&t); while(t--) { int n; scanf("%d",&n); printf("%lld\n",a[n]); } return 0; }
标签:折线 实例 行数据 -- 今天 找规律 http content math.h
原文地址:https://www.cnblogs.com/shoulinniao/p/9532653.html