1、隆回职业中专隆回职业中专 幸建新幸建新Enter radius and height: 3.0 10Volume = 282.743没有分号没有分号不能写成不能写成 double r, h#include int main (void) void pyramid (int n);/* 函数声明函数声明 */pyramid(5);/* 调用函数,输出数字金字塔调用函数,输出数字金字塔 */return 0;void pyramid (int n) /* 函数定义函数定义 */int i, j;for (i=1; i=n; i+) /* 需要输出的行数需要输出的行数 */ for(j=1; j=n
2、-i; j+) /* 输出每行左边的空格输出每行左边的空格 */printf( ); for(j=1; j= i; j+) /* 输出每行的数字输出每行的数字 */ printf(%d , i); /* 每个数字的前后各有一个空格每个数字的前后各有一个空格 */ putchar (n); 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 71513114/*用公式计算用公式计算的近似值,精度为的近似值,精度为e*/#include #include int main (void) double e, pi; double funpi (double e); printf (Enter
3、 e:); scanf (%lf, &e); pi = funpi (e); printf (pi = %fn, pi);return 0;double funpi (double e) int denominator, flag; double item, sum; flag = 1; denominator = 1; item = 1.0; sum = 0; while (fabs (item) = e) item = flag*1.0/denominator; sum = sum + item; flag = -flag; denominator=denominator+2; Enter
4、 e: 0.0001pi = 3.1418函数声明函数声明b:b:小范围内的临时变量小范围内的临时变量 44, 7数数据据区区静态存储区静态存储区动态存储区动态存储区0,1,3,静态变量的初值默认为静态变量的初值默认为03、分析下列程序运行后的输出结果,重点分析、分析下列程序运行后的输出结果,重点分析静态局部变量和全局变量的作用,关注自增运算符静态局部变量和全局变量的作用,关注自增运算符的作用。的作用。int a=2;int f(int n) static int a=3; int t=0; if(n%2)static int a=4;t+=a+; else static int a=5;t+=a+; return t+a+;4、分别用分别用全局变量全局变量和和函数调用函数调用的方式,在自定义的方式,在自定义函数中找出函数中找出1010个学生的成绩中最高分、最低分,并个学生的成绩中最高分、最低分,并求其平均分。求其平均分。main() int s = a; for(i=0;i3;i+) s+=f(i); printf(“%dn”,s);