实验任务1
程序源码
#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中字符串 }
程序实现功能 随机生成依次出现的十个空行不同 位置不定的指定字符串
实验任务2
程序源码
#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 = %11d\n",p); p = p * n; return p; }
程序运行截图
程序源码
#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; }
程序运行截图
静态全局变量只能被所在源文件使用,不能再被说明为外部变量
静态局部变量始终存在,函数退出时不能被其他函数使用
实验任务3
#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==1) return 1; return func(n-1)*2+1; }
程序运行截图
实验任务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||n==0) return 1; return func(n-1,m)+func(n-1,m-1); }
程序运行截图
实验任务5
程序源码
#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 res=1; if(y>=0){ for(int i=0;i<y;i++){ res=res*x; } } else{ for(int i=0;i<-y;i++){ res=res/x; } } return res; }
#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){ if(y==0) return 1; else if(y>0){ return x*mypow(x,y-1); } else{ return 1/mypow(x,-y); } }
程序运行截图
实验任务6
程序源码
#include <stdio.h> void hanoi(unsigned int n, char from, char tmp, char to); void moveplate(unsigned int n, char from, char to); int cnt=0; int main(){ unsigned int n; while(scanf("%u",&n)!= EOF){ cnt=0; hanoi(n,'A','B','C'); printf("\n一共移动了%d次\n\n",cnt); } return 0; } void hanoi(unsigned int n, char from, char tmp, char to){ if(n==1) moveplate(n,from,to); else{ hanoi(n-1,from,to,tmp); moveplate(n,from,to); hanoi(n-1,tmp,from,to); } } void moveplate(unsigned int n, char from, char to){ printf("%u: %c --> %c\n",n,from,to); cnt++; }
程序运行截图
实验任务7
程序源码
#include <stdio.h> int main(){ int i,j; for(i=2;i<=20;i=i+2){ for(j=2;j<=i/2;j++){ if(is_prime(j)&&is_prime(i-j)){ printf("%d = %d + %d\n",i,j,i-j); break; } } } return 0; } int is_prime(int n){ int i; for(i=2;i*i<=n;i++){ if(n%i==0) return 0; } return 1; }
程序运行截图
实验任务8
程序源码
#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 res=0; int tmp; while(s){ tmp=s%10; if(tmp%2){ res=res*10+tmp; } s=s/10; } long res2=0; while(res){ res2=res2*10+res%10; res=res/10; } return res2; }
程序运行截图
标签:return,int,long,char,实验,func,include From: https://www.cnblogs.com/202283300588t/p/17273704.html