【工学】C语言编程典100例 共(18页).docVIP

  • 7
  • 0
  • 约1.01万字
  • 约 20页
  • 2017-03-21 发布于贵州
  • 举报
【工学】C语言编程典100例 共(18页)

【程序76】 题目:编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数    1/1+1/3+...+1/n 利用指针函数 1.程序分析: 2.程序源代码: main #include “stdio.h“ main float peven ,podd ,dcall ; float sum; int n; while 1 scanf “%d“,n ;  if n〉1   break; if n%2 0 printf “Even “ ;  sum dcall peven,n ; else  printf “Odd “ ;  sum dcall podd,n ; printf “%f“,sum ; float peven int n float s; int i; s 1; for i 2;i〈 n;i+ 2  s+ 1/ float i; return s ; float podd n int n; float s; int i; s 0; for i 1;i〈 n;i+ 2  s+ 1/ float i; return s ; float dcall fp,n float *fp ; int n; float s; s *fp n ; return s ; 【

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档