实验4
试验任务1.1
源代码
1 #include<stdio.h> 2 #define N 4 3 void test1(){ 4 int a[N]={1,9,8,4}; 5 int i; 6 7 printf("sizeof(a)=%d\n",sizeof(a)); 8 9 for(i=0;i<N;i++) 10 printf("%p: %d\n",&a[i],a[i]); 11 12 printf("a=%p\n",a); 13 } 14 void test2(){ 15 char b[N]={'1','9','8','4'}; 16 int i; 17 18 printf("sizeof(b)=%d\n",sizeof(b)); 19 20 for(i=0;i<N;i++) 21 printf("%p=%d\n",&b[i],b[i]); 22 23 printf("b=%p\n",b); 24 } 25 int main(){ 26 printf("测试1:int类型一维数组\n"); 27 test1(); 28 29 printf("\n测试2:char类型一维数组\n"); 30 test2(); 31 return 0; 32 }
运行结果
试验任务1.2
源代码
1 #include<stdio.h> 2 #define N 2 3 #define M 4 4 void test1(){ 5 int a[N][M]={{1,9,8,4},{2,0,4,9}}; 6 int i,j; 7 8 printf("sizepf(a)=%d\n",sizeof(a)); 9 10 for(i=0;i<N;i++){ 11 for(j=0;j<M;j++) 12 printf("%p=%d\n",&a[i][j],a[i][j]); 13 } 14 printf("\n"); 15 printf("a=%p\n",a); 16 printf("a[0]=%p\n",a[0]); 17 printf("a[1]=%p\n",a[1]); 18 printf("\n"); 19 20 } 21 void test2(){ 22 char b[N][M]={{'1','9','8','4'},{'2','0','4','9'}}; 23 int i,j; 24 printf("sizeof(b)=%d\n",sizeof(b)); 25 26 for(i=0;i<N;i++) 27 for(j=0;j<M;j++) 28 printf("%p=%d\n",&b[i][j],b[i][j]); 29 printf("\n"); 30 printf("b=%p\n",b); 31 printf("b[0]=%p\n",b[0]); 32 printf("b[1]=%p\n",b[1]); 33 34 } 35 int main(){ 36 printf("测试1:int型二维数组\n"); 37 test1(); 38 39 printf("测试2:char型二维数组\n"); 40 test2(); 41 return 0; 42 }
运行结果
试验任务2
源代码
1 #include<stdio.h> 2 #include<string.h> 3 4 #define N 80 5 void swap_str(char s1[],char s2[]); 6 void test1(); 7 void test2(); 8 int main(){ 9 printf("测试:用两个一维chat数组,实现两个字符串交换\n"); 10 test1(); 11 printf("测试2:用二维数组,实现两个字符串交换\n"); 12 test2(); 13 return 0; 14 15 } 16 void test1(){ 17 char view1[N]="hey,c,i hate u."; 18 char view2[N]="hey,c,i love u."; 19 20 printf("交换前:\n"); 21 puts(view1); 22 puts(view2); 23 24 swap_str(view1,view2); 25 26 printf("交换后:\n"); 27 puts(view1); 28 puts(view2); 29 30 } 31 void test2(){ 32 char views[2][N]={"hey,c,i hate u.","hey c,i love u."}; 33 printf("交换前:\n"); 34 puts(views[0]); 35 puts(views[1]); 36 swap_str(views[0],views[1]); 37 38 printf("交换后:\n"); 39 puts(views[0]); 40 puts(views[1]); 41 } 42 void swap_str(char s1[],char s2[]){ 43 char t[N]; 44 strcpy(t,s1); 45 strcpy(s1,s2); 46 strcpy(s2,t); 47 }
运行结果
试验任务3.1
源代码
1 #include<stdio.h> 2 #define N 80 3 int count(char x[]); 4 int main(){ 5 char words[N+1]; 6 int n; 7 8 while(gets(words)!=NULL){ 9 n=count(words); 10 printf("单词数:%d\n\n",n); 11 } 12 return 0; 13 } 14 int count(char x[]){ 15 int i,word=0,number=0; 16 17 for(i=0;x[i]!='\0';i++){ 18 if(x[i]==' ') 19 word=0; 20 else if(word==0){ 21 word=1; 22 number++; 23 } 24 } 25 return number; 26 }
运行结果
试验任务3.2
源代码
1 #include<stdio.h> 2 #define N 80 3 int count(char x[]); 4 int main(){ 5 char line[N]; 6 int word_len,max_len,i,end; 7 8 while(gets(line)!=NULL){ 9 word_len=0; 10 max_len=0; 11 end=0; 12 i=0; 13 while(1){ 14 while(line[i]==' '){ 15 word_len=0; 16 i++; 17 } 18 while(line[i]!='\0'&&line[i]!=' '){ 19 word_len++; 20 i++; 21 } 22 if(word_len>max_len){ 23 max_len=word_len; 24 end=i; 25 } 26 if(line[i]=='\0') 27 break; 28 } 29 printf("最长单词:"); 30 for(i=end-max_len;i<end;++i) 31 printf("%c",line[i]); 32 printf("\n\n"); 33 } 34 return 0; 35 } 36 int count(char x[]){ 37 int i,word=0,number=0; 38 39 for(i=0;x[i]!='\0';i++){ 40 if(x[i]==' ') 41 word=0; 42 else if(word==0){ 43 word=1; 44 number++; 45 } 46 } 47 return number; 48 }
运行结果
试验任务4
源代码
1 #include <stdio.h> 2 #define N 100 3 void dec_to_n(int x, int n); // 函数声明 4 5 int main() { 6 int x; 7 8 printf("输入一个十进制整数: "); 9 while(scanf("%d", &x) != EOF) { 10 dec_to_n(x, 2); // 函数调用: 把x转换成二进制输出 11 dec_to_n(x, 8); // 函数调用: 把x转换成八进制输出 12 dec_to_n(x, 16); // 函数调用: 把x转换成十六进制输出 13 14 printf("\n输入一个十进制整数: "); 15 } 16 17 return 0; 18 } 19 void dec_to_n(int x, int n){ 20 char s[17]={"0123456789ABCDEF"}; 21 char ans[N]; 22 int r,i=0; 23 do{ 24 r=x%n; 25 ans[i++]=s[r]; 26 x=x/n; 27 28 }while(x!=0); 29 for(i=i-1;i>=0;i--) 30 printf("%c",ans[i]); 31 printf("\n"); 32 }
运行结果
试验任务5
源代码
1 #include <stdio.h> 2 #define N 5 3 4 // 函数声明 5 void input(int x[], int n); 6 void output(int x[], int n); 7 double average(int x[], int n); 8 void bubble_sort(int x[], int n); 9 10 int main() { 11 int scores[N]; 12 double ave; 13 14 printf("录入%d个分数:\n", N); 15 input(scores, N); 16 17 printf("\n输出课程分数: \n"); 18 output(scores, N); 19 20 printf("\n课程分数处理: 计算均分、排序...\n"); 21 ave = average(scores, N); 22 bubble_sort(scores, N); 23 24 printf("\n输出课程均分: %.2f\n", ave); 25 printf("\n输出课程分数(高->低):\n"); 26 output(scores, N); 27 28 return 0; 29 } 30 31 // 函数定义 32 // 输入n个整数保存到整型数组x中 33 void input(int x[], int n) { 34 int i; 35 36 for(i = 0; i < n; ++i) 37 scanf("%d", &x[i]); 38 } 39 40 // 输出整型数组x中n个元素 41 void output(int x[], int n) { 42 int i; 43 44 for(i = 0; i < n; ++i) 45 printf("%d ", x[i]); 46 printf("\n"); 47 } 48 double average(int x[], int n){ 49 int i; 50 double aver=0.0; 51 for(i=0;i<n;i++){ 52 aver+=x[i]; 53 } 54 aver=aver/n; 55 return aver; 56 } 57 58 void bubble_sort(int x[], int n){ 59 int i,t,j,k=0; 60 for(i=0;i<n;i++){ 61 for(j=0;j<n-i;j++){ 62 if(x[j]<x[j+1]){ 63 t=x[j]; 64 x[j]=x[j+1]; 65 x[j+1]=t; 66 k=1; 67 } 68 } 69 if(k==0) 70 break; 71 } 72 }
运行结果
试验任务6
源代码
1 #include <stdio.h> 2 #include <string.h> 3 4 #define N 5 5 #define M 20 6 7 // 函数声明 8 void output(char str[][M], int n); 9 void bubble_sort(char str[][M], int n); 10 11 int main() { 12 char name[][M] = {"Bob", "Bill", "Joseph", "Taylor", "George"}; 13 int i; 14 15 printf("输出初始名单:\n"); 16 output(name, N); 17 18 printf("\n排序中...\n"); 19 bubble_sort(name, N); // 函数调用 20 21 printf("\n按字典序输出名单:\n"); 22 output(name, N); 23 24 return 0; 25 } 26 27 // 函数定义 28 // 功能:按行输出二维数组中的字符串 29 void output(char str[][M], int n) { 30 int i; 31 32 for(i = 0; i < n; ++i) 33 printf("%s\n", str[i]); 34 } 35 void bubble_sort(char str[][M], int n){ 36 int i,j; 37 char t[M]; 38 for(i=0;i<n-1;i++){ 39 for(j=0;j<n-1-i;j++){ 40 if(strcmp(str[j],str[j+1])>0){ 41 strcpy(t,str[j]); 42 strcpy(str[j],str[j+1]); 43 strcpy(str[j+1],t);} 44 } 45 } 46 }
运行结果
试验任务7
源代码
1 #include <stdio.h> 2 #include <string.h> 3 #define N 100 4 5 int main() { 6 char s[N]; 7 int i=0,k=0; 8 while(gets(s)!=NULL){ 9 i=0; 10 while(s[i++]!='\0'); 11 k=compare(s,i-1); 12 if(k==0) 13 printf("NO\n"); 14 if(k==1) 15 printf("YES\n"); 16 } 17 18 return 0; 19 } 20 int compare(char s[],int n){ 21 int k=0,i,j; 22 for(i=0;i<n;i++){ 23 for(j=i+1;j<n;j++) 24 if(s[i]==s[j]){ 25 k=1; 26 break; 27 } 28 } 29 return k; 30 }
运行结果
试验任务8
源代码
1 #include <stdio.h> 2 #define N 100 3 #define M 4 4 5 6 void output(int x[][N], int n); 7 void rotate_to_right(int x[][N], int n); 8 9 10 int main() { 11 int t[][N] = {{21, 12, 13, 24}, 12 {25, 16, 47, 38}, 13 {29, 11, 32, 54}, 14 {42, 21, 33, 10}}; 15 16 printf("原始矩阵:\n"); 17 output(t, M); 18 19 rotate_to_right(t, M); 20 21 printf("变换后矩阵:\n"); 22 output(t, M); 23 24 return 0; 25 } 26 27 28 void output(int x[][N], int n) { 29 int i, j; 30 31 for (i = 0; i < n; ++i) { 32 for (j = 0; j < n; ++j) 33 printf("%4d", x[i][j]); 34 35 printf("\n"); 36 } 37 } 38 39 void rotate_to_right(int x[][N], int n){ 40 int i,j=0,t[N]={0}; 41 for(i=0;i<n;i++){ 42 t[j]=x[i][n-1]; 43 j++;} 44 for(j=n-1;j>=0;j--){ 45 for(i=0;i<n-1;i++) 46 x[i][j]=x[i][j-1]; 47 } 48 j=0; 49 for(i=0;i<n;i++){ 50 x[i][0]=t[j]; 51 j++;} 52 }
运行结果