task1.
实验代码
#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 } 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中字符串 }
实现功能:每隔一秒打印一个·hi april的文本,文本位置在规定的l(0-23) c(0-78)随机位置,产生类似于随机动画的效果
task2.1
实验代码
// 利用局部static变量的特性,计算阶乘 #include <stdio.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; return p; }
task2.2
实验代码
// 练习:局部static变量特性 #include <stdio.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); 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
实验代码
#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) {if (n==0) return 0; else return func(n-1)*2+1; }
截图
task 4
实验代码
#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) {if (m>n) return 0; if (m==0) return 1; if (m==n) return 1; return func(n-1,m)+func(n-1,m-1); }
实验截图
task5.
迭代实验代码
#include <stdio.h> #include <math.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) {int i; double sum=1.0; for(i=1;i<=abs(y);i++) { sum*=x; } if (y>=0) return sum; else return (1/sum); }
实验截图
递归试验代码
#include <stdio.h> #include <math.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) { if (y==0) return 1; else if(y>0) return x*mypow(x,--y); else return 1.0/x*mypow(x,++y); }
实验截图
task6.
实验代码
#include<stdio.h> #include<math.h> void hanoi(unsigned n ,char from ,char temp, char to); void mp(unsigned nth, char from , char to); int main() { unsigned n,k; char from='A',temp='B',to='C'; while(scanf("%u",&n)!=EOF) {hanoi(n,from,temp,to); k=pow(2,n)-1; printf("一共移动盘子%u次\n",k); } return 0; } void hanoi(unsigned n ,char from ,char temp, char to) {if(n==1) mp(n,from,to); else{ hanoi(n-1,from,to,temp); mp(n,from,to); hanoi(n-1,temp,from,to); } } void mp(unsigned nth, char from , char to) {printf("%u: %c --> %c\n",nth,from,to); }
实验截图
task7.
代码
#include <stdio.h> #include <math.h> int is_prime(int n); int main() { int i,k,a[15],j=0,l; for(k=2;k<=20;k++) {if(is_prime(k)) a[j++]=k;} for(i=2;i<=10;i++) { for(l=1;l<=10;l++) { if (is_prime(2*i-a[l-1])) {printf("%d = %d + %d\n",(2*i),a[l-1],(2*i-a[l-1]));break;} } } return 0; } int is_prime(int n) {int i,flag=1; for(i=2;i<=sqrt(n);i++) {if(n%i==0) {flag=0;break;} } return flag; }
截图
task8.
#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 i,k;long len1=0,len=0; long temp,t=0,f; f=s; while(f!=0){f/=10;len1++;} for(i=1;i<=len1;i++) { f=s,len=0; while(f!=0){f/=10;len++;} k=len-1; temp=s/pow(10,k); if (temp==0) continue; if(temp % 2 !=0) t=t*10+temp; s=s%(long)pow(10,k); } return t; }
截图
思考:注意的点 函数的循环以及其中量的循环
标签:return,int,long,char,实验,func,include From: https://www.cnblogs.com/KFD666/p/17273688.html