- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
c语言程序设计实验内容与答案(C language program design experiment and answer)
c语言程序设计实验内容与答案(C language program design experiment and answer)
The first week of the experiment content
The contents of this experiment is familiar with the VC++6.0 environment, the preparation of the first C program: known for the rectangular area on both sides
#include stdio.h
Int (main)
{
Float a, B, s;
A=3.0;
B=4.5;
S=a*b;
Printf (%f\n, s);
Return 0;
}
The second week of the experiment content
Programming: known radius radius=1.25, and circumference and area of a circle.
(round the perimeter and area: C=2 R, S=0.5 R2 formula to calculate the perimeter and area of the garden, must know the radius of the circle. The title has been given the radius of radius=1.25, note that the data type is decimal, should be defined as float or double, then directly into the formula to calculate the operation on it. )
The third week of the experiment content
1, write a program to complete a single letters conversion. (Experiment P9)
2, realize the conversion between different data types. (Experiment P12)
The fourth week of the experiment content
1, the known equation of ax2+bx+c=0 coefficient a, B, C values (from the keyboard input), assuming that b2-4ac0, two real roots of equation of programming.
#include stdio.h
#include math.h
Int (main)
{
Float a, B, C, x1, X2, delt;
Scanf (%f,%f,%f, a, b, c);
Delt=b*b-4*a*c;
X1= (-b+sqrt (delt)) / (2*a);
X2= (-b-sqrt (delt)) / (2*a);
Printf (x1=%f, x2=%f\n, x1, X2);
Return 0;
}
2, the Main into cipher. Decoding rule: use the original letters behind the third letters instead of the original letter. #include stdio.h
Int (main)
{
Char c1=M, c2=a, c3=i, c4=n;
C1=c1+3;
C2=c2+3;
C3=c3+3;
C4=c4+3;
Printf (%c%c%c%c\n, C1, C2, C3, C4);
Return 0;
}
The fifth week of the experiment content
1, the known equation of ax2+bx+c=0 coefficient a, B, C values (from the keyboard input), programming for the root of the equation.
Tip: to determine a ranging from 0; according to whether the delt is more than or equal to or less than zero to calculate equation two
您可能关注的文档
- bat基本语法分析(Bat basic syntax analysis).doc
- books about economics and managemengt(关于经济和管理的书籍).doc
- bios设置图解(BIOS settings diagram).doc
- boro卫浴福建营销战略规划(部分)(Boro bathroom Fujian marketing strategy planning (part)).doc
- british writers and works(英国作家与作品).doc
- business 商务英语(Business business English).doc
- bux系列(Bux series).doc
- bvd(BVD).doc
- c 大学基础教程1(C University Basic Course 1).doc
- c 课程设计学生选课软件设计(C curriculum design student course selection software design).doc
- c语言程序设计的基本方法和技巧(The basic methods and techniques of C language program design).doc
- c语言程序设计期末考试复习题及答案(C language program design final exam review questions and answers).doc
- c语言程序设计课后习题答案(C Language Program Design after-school exercise answers).doc
- c语言程序设计试题(C language program design test).doc
- c语言程序设计课后题答案(C language programming exercises answer).doc
- c语言程序设计(清华郑莉 安颍莲)chap9(C programming language (Tsinghua Zheng Lian Ying Lian) chap9).doc
- c语言笔试冲刺复习资料 计算机二级 培训机构内部资料(C language written sprint review information on computer two level training institutions internal data).doc
- c语言程序设计课程设计-学生成绩管理系统(C programming language course design - student achievement management system).doc
- c语言程序设计2(C language program design 2).doc
- c语言第一次讲义(C language is the first lecture).doc
文档评论(0)