分享
 
 
 

C语言程序应用举例

王朝c/c++·作者佚名  2008-06-01
窄屏简体版  字體: |||超大  

这是一个递归函数调用的例子。程序中函数f o r w a r d _ a n d _ b a c k w a r d s ( )的功能是显示一个字符串后反向显示该字符串。

[例4-17] 计算1~7的平方及平方和。

#include <stdio.h>

# include<math.h>

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 ) ;

}

运行程序:

R U N ¿

This is the header for the square program

The square of 1 is 1

The square of 2 is 4

The square of 3 is 9

The square of 4 is 16

The square of 5 is 25

The square of 6 is 36

The square of 7 is 49

The sum of the squares is 140

这个程序打印出1到7的平方值,最后打印出1到7的平方值的和,其中全局变量s u m在多个

函数中出现过。

全局变量在h e a d e r中被初始化为零;在函数s q u a r e中,s u m对n u m b e r的平方值进行累加,也就是说,每调用一次函数s q u a r e和s u m就对n u m b e r的平方值累加一次;全局变量s u m在函数

e n d i n g中被打印。

[例4-18] 全局变量与局部变量的作用。

#include <stdio.h>

void head1(void);

void head2(void);

void head3(void);

int count; /* 全局变量* /

m a i n ( )

{

register int index; / *定义为主函数寄存器变量* /

h e a d 1 ( ) ;

h e a d 2 ( ) ;

h e a d 3 ( ) ;

for (index = 8;index > 0;index--) /* 主函数"for" 循环* /

{

int stuff; /* 局部变量* /

/* 这种变量的定义方法在Turbo C 中是不答应的* /

/* stuff 的可见范围只在当前循环体内* /

for(stuff = 0;stuff <= 6;s t u f f + + )

printf("%d ",s t u f f ) ;

printf(" index is now %d\,n"in d e x ) ;

}

}

int counter; /* 全局变量* /

/* 可见范围为从定义之处到源程序结尾* /

void head1(void)

{

int index; / * 此变量只用于head1 */

index = 23;

printf("The header1 value is %d\,n"in d e x ) ;

}

void head2(void)

{

int count; /* 此变量是函数h e a d 2 ( ) 的局部变量* /

/* 此变量名与全局变量c o u n t 重名* /

/* 故全局变量c o u n t 不能在函数h e a d 2 ( ) 中使用* /

count = 53;

printf("The header2 value is %d\,n"co u n t ) ;

counter = 77;

}

void head3(void)

{

printf("The header3 value is %d\,nc"o u n t e r ) ;

}

运行程序:

R U N ¿

The headerl value is 23

The header2 value is 53

The header3 value is 77

0 1 2 3 4 5 6 index is now 8

0 1 2 3 4 5 6 index is now 7

0 1 2 3 4 5 6 index is now 6

0 1 2 3 4 5 6 index is now 5

0 1 2 3 4 5 6 index is now 4

0 1 2 3 4 5 6 index is now 3

0 1 2 3 4 5 6 index is now 2

0 1 2 3 4 5 6 index is now 1

该程序的演示帮助读者来了解全局变量、局部变量的作用域,请仔细理解体会。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有