task1.c
#include<stdio.h> #include<stdlib.h> #include<time.h> #include<windows.h> #define N 80 void print_text(int line, int col, char text[]); // 函数声明 void print_spaces(int n); // 函数声明 void print_blank_lines(int n); // 函数声明 int main() { int line, col, i; char text[N] = "hi, April~"; srand(time(0)); // 以当前系统时间作为随机种子 for(i = 1; i <= 10; ++i) { line = rand() % 25; col = rand() % 80; print_text(line, col, text); Sleep(1000); // 暂停1000ms } system("pause"); return 0; } // 打印n个空格 void print_spaces(int n) { int i; for(i = 1; i <= n; ++i) printf(" "); } // 打印n行空白行 void print_blank_lines(int n) { int i; for(i = 1; i <= n; ++i) printf("\n"); } // 在第line行第col列打印一段文本 void print_text(int line, int col, char text[]) { print_blank_lines(line-1); // 打印(line-1)行空行 print_spaces(col-1); // 打印(col-1)列空格 printf("%s", text); // 在第line行、col列输出text中字符串 }
程序实现的功能:设置随机数控制打出多少空格和空白行,并要求在每一次第line行和第col列,打出文本“hi,April~”
task2.c
实验代码
// 利用局部static变量的特性,计算阶乘 #include <stdio.h> #include<stdlib.h> long long fac(int n); // 函数声明 int main() { int i, n; printf("Enter n: "); scanf("%d", &n); for (i = 1; i <= n; ++i) printf("%d! = %lld\n", i, fac(i)); return 0; } // 函数定义 long long fac(int n) { static long long p = 1; printf("p = %lld\n",p); p = p * n; system("pause"); return p; }
运行截图
task2_2.c
实验代码
// 练习:局部static变量特性 #include <stdio.h> #include<stdlib.h> int func(int, int); // 函数声明 int main() { int k = 4, m = 1, p1, p2; p1 = func(k, m); // 函数调用 p2 = func(k, m); // 函数调用 printf("%d, %d\n", p1, p2); system("pause"); return 0; } // 函数定义 int func(int a, int b) { static int m = 0, i = 2; i += m + 1; m = i + a + b; return m; }
运行截图
一致
static变量的特性:即使函数退出,但变量依旧始终保存在其中,而且不会给其他函数运用,再次运用这个函数时,也会保存上次结果。
task3.c
实验代码
#include <stdio.h> long long func(int n); int main() { int n; long long f; while (scanf("%d", &n) != EOF) { f = func(n); printf("n = %d, f = %lld\n", n, f); } return 0; } long long func(int n) { long long f=0; if(n==1) return 1; else return func(n-1)*2+1; }
运行截图
task4.c
实验代码
#include <stdio.h> int func(int n, int m); int main() { int n, m; while(scanf("%d%d", &n, &m) != EOF) printf("n = %d, m = %d, ans = %d\n", n, m, func(n, m)); return 0; } int func(int n, int m){ int s; if( n < 0 || m < 0 || m > n ) { s = 0; } else if( m == 0 ) { s = 1; } else if( m > n / 2 )//4>5/2 1 2 3 4 { m = n - m;//m=5-4=1 s = func( n , m );//n=5 m=1 } else { s=func(n - 1, m) + func(n - 1, m - 1); } return s; }
运行截图
task5.c
实验代码
#include <stdio.h> double mypow(int x, int y); int main() { int x, y; double ans; while(scanf("%d%d", &x, &y) != EOF) { ans = mypow(x, y); printf("%d的%d次方: %g\n\n", x, y, ans); } return 0; } double mypow(int x, int y) { double sum=1; if(y>=0) for(int i=0;i<y;i++) { sum*=x; } else { for(int i=0;i>y;i--) { sum/=x; } } return sum; } double mypow(int x, int y) { double s=1; if(y>0) for(int i=0;i<y;i++) { s*=x; } else for(int i=0;i>y;i--) { s/=x; } return s; }
运行截图
ask6.c
实验代码
#include<stdio.h> #include<stdlib.h> void hanoi(unsigned int n,char from,char temp,char to); void moveplate(unsigned int n,char from,char to); int q=0; int main() { unsigned int n; while(scanf("%u",&n)!=EOF) { q=0; hanoi(n,'A','B','C'); printf("一共移动了%d次.\n",q); } system("pause"); return 0; } void hanoi(unsigned int n, char from, char temp,char to) { if(n==1) moveplate(n,from, to); else { hanoi(n-1,from, to, temp); moveplate(n,from, to); hanoi(n- 1,temp,from, to); } } void moveplate(unsigned int n, char from, char to) { printf("%u;%c-->%c\n",n,from,to); q++; }
运行截图
task7.c
实验代码
#include <stdio.h> int is_prime(int x); // 函数声明 int main() { int i,j; for(i=2;i<=20;i=i+2) { for(j=2;j<=20;j++) if(is_prime(j)) { if(is_prime(i-j)&&i>j&&i-j>1) { printf("%d=%d+%d\n",i,j,i-j); break; } } } } int is_prime(int x){ for(int i=2;i<x/2;i++) { if(x%i==0) return 0; } return 1; }
task8.c
实验代码
#include <stdio.h> #include <math.h> long func(long s); // 函数声明 int main() { long s, t; printf("Enter a number: "); while (scanf("%ld", &s) != EOF) { t = func(s); // 函数调用 printf("new number is: %ld\n\n", t); printf("Enter a number: "); } return 0; } // 函数定义 long func(long s) { long sum=0; int b; int a=0; while(s) { b=s%10; if(b%2!=0) { sum+=pow(10,a)*b; a++; } s=s/10; } return sum; } // 待补足。。。
运行截图
shi
实验结论:知道了函数的递归写法,也知道关于幂函数求值时分类讨论,关于结束点的选取,和递归时运用乘或者除。
标签:return,int,long,char,实验,func,include From: https://www.cnblogs.com/czxxx-aurora1/p/17273724.html