- 1、本文档共75页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
全国计算机二级C语言考试内部资料-编程
上机编程题
A类数学表达式(1—10)(N)
1
#include conio.h
#include stdio.h
float fun(int m,int n)
{
float t1=1,t2=1,t3=1,i;
for(i=1;i=m;i++)
t1*=i;
for(i=1;i=n;i++)
t2*=i;
for(i=1;i=m-n;i++)
t3*=i;
return t1/(t2*t3);
}
main()
{
printf(P=%f\n,fun(12,8));
}
2
#include conio.h
#include math.h
#include stdio.h
float fun()
{
float x1=0.0,x0;
x0=x1;
x1=cos(x0);
while(fabs(x0-x1)=0.000001)
{
x0=x1;
x1=cos(x0);
}
return x1;
}
main()
{
printf(Root=%f\n,fun());
}
3
#include conio.h
#include stdio.h
double fun(int n)
{
double f0=0,f1=1,fn;
fn=f0+f1;
while(fn=n)
{
f0=f1;
f1=fn;
fn=f0+f1;
}
return fn;
}
main() /*主函数*/
{
printf(%f\n,fun(1000));
}
4
#include conio.h
#include stdio.h
void fun (float *sn,int n)
{
float i,t=1;
*sn=0;
for(i=0;i=n;i++)
{ *sn+=t/(2*i+1);
t=-t;
}
}
main() /*主函数*/
{ int n=11;float s;
fun(s,n);
printf(s=%f n=%d\n,s,n);
}
5
#include conio.h
#include math.h
#include stdio.h
double fun( int m)
{
double s=0,i;
for(i=1;i=m;i++)
s+=log(i);
return sqrt(s);
}
main()
{
printf(%f\n,fun(20));
}
6
#include conio.h
#include stdio.h
#include math.h
double fun(double x,int n)
{
double s=x+1,i,t=1;
for(i=2;i=n;i++)
{
t*=i;
s+=pow(x,i)/t;
}
return s;
}
main()
{
printf(%f\n,fun(0.3,10));
}
7
#include stdio.h
#include math.h
double fun (int n)
{
double s=0, i;
for(i=1;i=n;i++)
s+=1.0/(i*(i+1));
return s;
}
main( )
{
printf(%f,fun(10));
}
8
#include stdio.h
#include math.h
double fun ( double eps)
{
double s=0,t=1,i,m=1;
for(i=1;t/m=eps;i++)
{
s+=t/m;
t=t*i;
m=m*(2*i+1);
}
return 2*s;
}
main( )
{ double x;
printf(Input eps:) ;
scanf(%lf,x); printf(\neps = %lf, PI=%lf\n, x, fun(x));
}
9
#include stdio.h
#include math.h
double fun(double x)
{
double i,t=1,m=1,s=0;
for(i=1;fabs(m/t)=0.000001;i++)
{
s=s+m/t;
m*=(0.5+1-i)*x;
t=t*i;
}
return s;
}
main()
{ double x,s;
printf(Input x: ); scanf(%lf,x);
s=fun(x);
printf(s=%f\n,s);
}
10
#include stdio.h
do
您可能关注的文档
- 第三部分 掘进机电控.ppt
- 第九章 投入产出技术与政策模拟分析.ppt
- 第三课《多彩的消费》考点突破2.ppt
- 第九章 临终老年人的护理.ppt
- 第九章 德育理论与实践2.ppt
- 第三讲党政机关公文.ppt
- 第九章 食品污染.ppt
- 第九章 劳动安全与事故预防.ppt
- 第九章 老年人与法律.ppt
- 第九章 力与运动(中考物理基础复习).ppt
- 2024年江西省高考政治试卷真题(含答案逐题解析).pdf
- 2025年四川省新高考八省适应性联考模拟演练(二)物理试卷(含答案详解).pdf
- 2025年四川省新高考八省适应性联考模拟演练(二)地理试卷(含答案详解).pdf
- 2024年内蒙通辽市中考化学试卷(含答案逐题解析).docx
- 2024年四川省攀枝花市中考化学试卷真题(含答案详解).docx
- (一模)长春市2025届高三质量监测(一)化学试卷(含答案).pdf
- 2024年安徽省高考政治试卷(含答案逐题解析).pdf
- (一模)长春市2025届高三质量监测(一)生物试卷(含答案).pdf
- 2024年湖南省高考政治试卷真题(含答案逐题解析).docx
- 2024年安徽省高考政治试卷(含答案逐题解析).docx
文档评论(0)