TA的每日心情 | 开心 2014-6-18 08:29 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
滴水大师
 
- 积分
- 2345
|
题目
解决代码及点评
- <pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"></pre><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/************************************************************************/
- /*
- 30. 编程序计算函数
- P(x)=b0xn + b1xn-1 + ... + bn-1x + bn
- 的值。要求先将X的各项系数先输入到数组B中,然后再用循环结构求P(X)的值。
-
- */
- /************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
- //返回数字位数
- const int N=10;
- int PHS30(int *brr,int x)
- { int sum=0;
- for (int i=0;i<N;i++)
- {
- sum+=brr* (int)pow((double)x,N-i);
- }
- return sum;
- }
-
- void main()
- {
-
- int brr[N]={0};
- int x=0;
- printf("请输入10个整数最为数组b的值\n");
- for (int i=0;i<N;i++)
- {
- scanf_s("%d",&brr);
- }
- printf("请输入x");
- scanf_s("%d",&x);
- printf(" \n函数结果为:%d",PHS30(brr,x)) ;
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|