1实验任务1
task1_1源代码
1 #include <stdio.h> 2 #define N 4 3 void test1() { 4 int a[N] = {1, 9, 8, 4}; 5 int i; 6 // 输出数组a占用的内存字节数 7 printf("sizeof(a) = %d\n", sizeof(a)); 8 // 输出int类型数组a中每个元素的地址、值 9 for (i = 0; i < N; ++i) 10 printf("%p: %d\n", &a[i], a[i]); 11 // 输出数组名a对应的值 12 printf("a = %p\n", a); 13 } 14 void test2() { 15 char b[N] = {'1', '9', '8', '4'}; 16 int i; 17 // 输出数组b占用的内存字节数 18 printf("sizeof(b) = %d\n", sizeof(b)); 19 // 输出char类型数组b中每个元素的地址、值 20 for (i = 0; i < N; ++i) 21 printf("%p: %c\n", &b[i], b[i]); 22 // 输出数组名b对应的值 23 printf("b = %p\n", b); 24 } 25 int main() { 26 printf("测试1: int类型一维数组\n"); 27 test1(); 28 printf("\n测试2: char类型一维数组\n"); 29 test2(); 30 return 0; 31 }task1_1.c
①是连续存放
4
不一样
②是连续存放
1
不一样
task1_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 // 输出int类型二维数组a占用的内存字节数 8 printf("sizeof(a) = %d\n", sizeof(a)); 9 // 输出int类型二维数组a中每个元素的地址、值 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 printf("\n"); 14 // 输出int类型二维数组名a, 以及,a[0], a[1]的值 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 void test2() { 21 char b[N][M] = {{'1', '9', '8', '4'}, {'2', '0', '4', '9'}}; 22 int i, j; 23 // 输出char类型二维数组b占用的内存字节数 24 printf("sizeof(b) = %d\n", sizeof(b)); 25 // 输出char类型二维数组b中每个元素的地址、值 26 for (i = 0; i < N; ++i) 27 for (j = 0; j < M; ++j) 28 printf("%p: %c\n", &b[i][j], b[i][j]); 29 printf("\n"); 30 // 输出char类型二维数组名b, 以及,b[0], b[1]的值 31 printf("b = %p\n", b); 32 printf("b[0] = %p\n", b[0]); 33 printf("b[1] = %p\n", b[1]); 34 } 35 int main() { 36 printf("测试1: int型两维数组"); 37 test1(); 38 printf("\n测试2: char型两维数组"); 39 test2(); 40 return 0; 41 }task1_2.c
①是连续存放的 4 一样
②是连续存放的 4 一样
③4 4
2.实验任务2
task2.c源代码
1 #include <stdio.h> 2 #include <string.h> 3 #define N 80 4 void swap_str(char s1[N], char s2[N]); 5 void test1(); 6 void test2(); 7 int main() { 8 printf("测试1: 用两个一维char数组,实现两个字符串交换\n"); 9 test1(); 10 printf("\n测试2: 用二维char数组,实现两个字符串交换\n"); 11 test2(); 12 return 0; 13 } 14 void test1() { 15 char views1[N] = "hey, C, I hate u."; 16 char views2[N] = "hey, C, I love u."; 17 printf("交换前: \n"); 18 puts(views1); 19 puts(views2); 20 swap_str(views1, views2); 21 printf("交换后: \n"); 22 puts(views1); 23 puts(views2); 24 } 25 void test2() { 26 char views[2][N] = {"hey, C, I hate u.", 27 "hey, C, I love u."}; 28 printf("交换前: \n"); 29 puts(views[0]); 30 puts(views[1]); 31 swap_str(views[0], views[1]); 32 printf("交换后: \n"); 33 puts(views[0]); 34 puts(views[1]); 35 } 36 void swap_str(char s1[N], char s2[N]) { 37 char tmp[N]; 38 strcpy(tmp, s1); 39 strcpy(s1, s2); 40 strcpy(s2, tmp); 41 }task2.c
一个是一维函数 一个是二维函数
3.实验任务3
task3_1.c源代码
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 while(gets(words) != NULL) { 8 n = count(words); 9 printf("单词数: %d\n\n", n); 10 } 11 return 0; 12 } 13 int count(char x[]) { 14 int i; 15 int word_flag = 0; // 用作单词标志,一个新单词开始,值为1;单词结束,值为0 16 int number = 0; // 统计单词个数 17 for(i = 0; x[i] != '\0'; i++) { 18 if(x[i] == ' ') 19 word_flag = 0; 20 else if(word_flag == 0) { 21 word_flag = 1; 22 number++; 23 } 24 } 25 return number; 26 }task3_1.c
task3_2.c源代码
1 #include <stdio.h> 2 #define N 1000 3 int main() { 4 char line[N]; 5 int word_len; // 记录当前单词长度 6 int max_len; // 记录最长单词长度 7 int end; // 记录最长单词结束位置 8 int i; 9 while(gets(line) != NULL) { 10 word_len = 0; 11 max_len = 0; 12 end = 0; 13 i = 0; 14 while(1) { 15 // 跳过连续空格 16 while(line[i] == ' ') { 17 word_len = 0; // 单词长度置0,为新单词统计做准备 18 i++; 19 } 20 // 在一个单词中,统计当前单词长度 21 while(line[i] != '\0' && line[i] != ' ') { 22 word_len++; 23 i++; 24 } 25 // 更新更长单词长度,并,记录最长单词结束位置 26 if(max_len < word_len) { 27 max_len = word_len; 28 end = i; // end保存的是单词结束的下一个坐标位置 29 } 30 // 遍历到文本结束时,终止循环 31 if(line[i] == '\0') 32 break; 33 } 34 // 输出最长单词 35 printf("最长单词: "); 36 for(i = end - max_len; i < end; ++i) 37 printf("%c", line[i]); 38 printf("\n\n"); 39 } 40 return 0; 41 }task3_2.c
4.实验任务4
task4.c源代码
1 #include <stdio.h> 2 #define N 100 3 void dec_to_n(int x, int n); // 函数声明 4 int main() { 5 int x; 6 printf("输入一个十进制整数: "); 7 while(scanf("%d", &x) != EOF) { 8 dec_to_n(x, 2); // 函数调用: 把x转换成二进制输出 9 dec_to_n(x, 8); // 函数调用: 把x转换成八进制输出 10 dec_to_n(x, 16); // 函数调用: 把x转换成十六进制输出 11 printf("\n输入一个十进制整数: "); 12 } 13 return 0; 14 } 15 16 void dec_to_n(int x, int n) 17 { 18 char map[17]={"0123456789ABCDEF"}; 19 char ans[N]; 20 int r; 21 int cnt=0,i; 22 do{ 23 r=x%n; 24 ans[cnt++]=map[r]; 25 x=x/n; 26 27 } 28 while(x!=0); 29 for(i=cnt-1;i>=0;--i) 30 printf("%c",ans[i]); 31 printf("\n"); 32 }task4.c
5.实验任务5
task5.c源代码
1 #include <stdio.h> 2 #define N 5 3 // 函数声明 4 void input(int x[], int n); 5 void output(int x[], int n); 6 double average(int x[], int n); 7 void bubble_sort(int x[], int n); 8 int main() { 9 int scores[N]; 10 double ave; 11 printf("录入%d个分数:\n", N); 12 input(scores, N); 13 printf("\n输出课程分数: \n"); 14 output(scores, N); 15 printf("\n课程分数处理: 计算均分、排序...\n"); 16 ave = average(scores, N); 17 bubble_sort(scores, N); 18 printf("\n输出课程均分: %.2f\n", ave); 19 printf("\n输出课程分数(高->低):\n"); 20 output(scores, N); 21 return 0; 22 } 23 // 函数定义 24 // 输入n个整数保存到整型数组x中 25 void input(int x[], int n) { 26 int i; 27 for(i = 0; i < n; ++i) 28 scanf("%d", &x[i]); 29 } 30 // 输出整型数组x中n个元素 31 void output(int x[], int n) { 32 int i; 33 for(i = 0; i < n; ++i) 34 printf("%d ", x[i]); 35 printf("\n"); 36 } 37 38 double average(int x[], int n){ 39 int s=0,i; 40 double a; 41 for(i=0;i<N;i++) 42 { 43 s+=x[i]; 44 } 45 a=(double)s/N; 46 return a; 47 } 48 49 void bubble_sort(int x[], int n) 50 { 51 int t,j,i; 52 for(j=0;j<N-1;j++) 53 for(i=0;i<N-j-1;i++) 54 if(x[i]<x[i+1]) 55 { 56 t=x[i]; 57 x[i]=x[i+1]; 58 x[i+1]=t; 59 } 60 61 62 }task5.c
6.实验任务6
task6.c源代码
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 36 // 函数定义 37 // 功能:使用冒泡排序算法对二维数组str中的n个字符串按字典序排序 38 // 补足函数bubble_sort()实现 39 // ××× 40 void bubble_sort(char str[][M], int n) 41 { 42 int j,i; 43 char t[M]; 44 for(j=0;j<N-1;j++) 45 for(i=0;i<N-j-1;i++) 46 if(strcmp(str[i],str[i+1])>0) 47 { 48 strcpy(t,str[i]); 49 strcpy(str[i],str[i+1]); 50 strcpy(str[i+1],t); 51 } 52 }task6.c
7.实验任务7
task7.c源代码
1 #include<stdio.h> 2 #define N 100 3 #include<string.h> 4 int main() 5 { 6 char a[N]; 7 int i,j,k,n=0; 8 while(scanf("%s",a)!=EOF) 9 { 10 int d=0; 11 n=strlen(a); 12 for(i=0;i<n;i++) 13 { 14 for(j=i+1;j<n;j++) 15 { 16 if(a[i]==a[j]) 17 { 18 d=1; 19 break; 20 } 21 } 22 if(d==1) 23 break; 24 } 25 if(d!=1) 26 printf("NO\n\n"); 27 else if(d==1) 28 printf("YES\n\n"); 29 30 31 } 32 return 0; 33 }task7.c
8.实验任务8
task8.c源代码
1 #include <stdio.h> 2 #define N 100 3 #define M 4 4 void output(int x[][N], int n); // 函数声明 5 void rotate_to_right(int x[][N], int n); // 函数声明 6 int main() 7 { 8 int t[][N] = {{21, 12, 13, 24},{25, 16, 47, 38},{29, 11, 32, 54},{42, 21, 33, 10}}; 9 printf("原始矩阵:\n"); 10 output(t, M); // 函数调用数调用 11 printf("变换后矩阵:\n"); 12 rotate_to_right(t, M); // 函 13 output(t, M); // 函数调用 14 return 0; 15 } 16 // 函数定义 17 // 功能: 输出一个n*n的矩阵x 18 void output(int x[][N], int n) { 19 int i, j; 20 for (i = 0; i < n; ++i) 21 { 22 for (j = 0; j < n; ++j) 23 printf("%4d", x[i][j]); 24 printf("\n"); 25 } 26 27 } 28 void rotate_to_right(int x[][N], int n) 29 { 30 int i,j,b[M]; 31 for(i=0;i<M;i++) 32 { 33 b[i]=x[i][M-1]; 34 } 35 for(i=0;i<n;i++) 36 { 37 for(j=M-1;j>0;--j) 38 { 39 x[i][j]=x[i][j-1]; 40 41 } 42 x[i][0]=b[i]; 43 } 44 }task8.c
标签:str,int,void,编程,C语言,char,++,数组,printf From: https://www.cnblogs.com/ojoyo/p/17833786.html