c++例题(C++ example).doc

  1. 1、本文档共32页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c例题(Cexample)

c++例题(C++ example) [program 82] Title: octal to decimal 1. program analysis: 2. program source code: (main) {char, *p, s[6]; int n; P=s; Gets (P); N=0; While (* (P) - =\0) {n=n*8+*p-0; P++;} Printf (%d, n); } [case 2.21] the value of the series. (main) { Int sigh=1; Float, deno=2.0, sum=1.0, term; While (deno=100) {sigh= -sigh; Term= sigh/ deno; Sum=sum+term; Deno=deno+1; } Printf (%f, sum); } Example 3.9) integer to character variables. (main) { Char, a, b; A=120; B=121; Printf (%c, %c\n, a, B); Printf (%d, %d\n, a, B); [program 66] Title: enter 3 numbers a, B, C, output in size order. 1. program analysis: using pointer method. 2. program source code: /*pointer*/ (main) { Int, N1, N2, n3; Int, *pointer1, *pointer2, *pointer3; Printf (please, input, 3, number:n1, N2, n3:); Scanf (%d,%d,%d, n1, n2, n3); Pointer1=n1; Pointer2=n2; Pointer3=n3; If (n1n2) swap (pointer1, pointer2); If (n1n3) swap (pointer1, pointer3); If (n2n3) swap (pointer2, pointer3); Printf (the, sorted, numbers, are:%d,%d,%d\n, N1, N2, N3); } Swap (P1, P2) Int, *p1, *p2; {int p; P=*p1; *p1=*p2; *p2=p; } [example 4.14] enter the three sides of the triangle, the triangle area. The length of the three sides of a known triangle is a, B, C, and the formula of the area of the triangle is: ()) () ((csbsassarea =??) =?, Where s = (a+b+c) /2 The source code is as follows: #includemath.h (main) { Float, a, B, C, s, area; Scanf (%f,%f,%f, a, b, c); S=1.0/2* (a+b+c); Area=sqrt (s* (S-A) * (S-B) * (S-C)); Printf (a=%7.2f, b=%7.2f, c=%7.2f, s=%7.2f\n, a, B, C, s); Printf (area=%7.2f\n, area); } [case 4.15] seek AX2 The roots of the +bx+c=0 equation, a, B, and C, are entered by the keyboard, and B2 -4ac0. Formula for: The source code is as follows: #includemath.h (main) { Float, a, B, C, disc, x1, X2, P, q; Scanf (a=%f, b=%f, c=%f, a, b, c); Disc=b*b-4*a*c; P=-b/ (2*a); Q=sqrt (disc) / (2*a); X1=p+q; x2=p-q; [example 4.11] enter three integers, the maximum output and the minimum number. Main () { Int, a, B, C, Max

您可能关注的文档

文档评论(0)

f8r9t5c + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档