码迷,mamicode.com
首页 > 其他好文 > 详细

1320: 函数解析式

时间:2019-09-26 00:32:25      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:include   row   inf   bsp   mamicode   ssi   输入   pre   frame   

函数 f(x)f(x) 满足 f(x+1)=f(x)+2xf(x+1)=f(x)+2x 且f(0)=1f(0)=1。
第一行有一个整数N表示N组测试数据。 
接下来有NN行,且每行都有一个整数xx,0<x100000<x≤10000。
求每组测试数据中f(x)f(x)的值。
2
1
2
1
3

#include <iostream>
using namespace std;


int f(int n){


	if(n==0)
		return 1;
	else
		return f(n-1)+2*(n-1);
}
int main(){




	int n,*p,i;
	scanf("%d",&n);
	p=new int[n];

	for(i=0;i<n;i++){
	
		cin>>p[i];
	}
		for(i=0;i<n;i++){
	
		cout<<f(p[i])<<endl;
	}


	return 0;

}

  

技术图片

 

 

 

1320: 函数解析式

标签:include   row   inf   bsp   mamicode   ssi   输入   pre   frame   

原文地址:https://www.cnblogs.com/PerZhu/p/11588280.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!