C语言-基础教程-C语言程序应用举例
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
C语言-基础教程-C语言程序应用举例
这是一个递归函数调用的例子。程序中函数f o r w a r d _ a n d _ b a c k w a r d s ( )的功能是显示一个字符串后反向显示该字符串。
[例4-17] 计算1~7的平方及平方和。
#include
# include
void header(); / *函数声明* /
void square(int number);
void ending();
int sum; /* 全局变量* /
m a i n ( )
{
int index;
h e a d e r ( ) ; / *函数调用* /
for (index = 1;index <= 7;i n d e x )
s q u a r e ( i n d e x ) ;
e n d i n g ( ) ; / *结束* /
}
void header()
{
sum = 0; /* 初始化变量"sum" */
printf("This is the header for the square program\n;\n")
}
void square(int number)
{
int numsq;
numsq = number * numbe;r
sum = numsq;
printf("The square of %d is %d\,nn"u m b e r ,nu m s q ) ;}
void ending()
{
printf("\nThe sum of the squares is %d,\ns"u m ) ;
}
1 2