Program5

实验1

实验1代码:

#include <stdio.h>
#include<stdlib.h>
#define N 5

void input(int x[], int n);
void output(int x[], int n);
void find_min_max(int x[], int n, int *pmin, int *pmax);

int main() {
    int a[N];
    int min, max;

    printf("录入%d个数据:\n", N);
    input(a, N);

    printf("数据是: \n");
    output(a, N);

    printf("数据处理...\n");
    find_min_max(a, N, &min, &max);

    printf("输出结果:\n");
    printf("min = %d, max = %d\n", min, max);

	system("pause");

    return 0;
}

void input(int x[], int n) {
    int i;

    for(i = 0; i < n; ++i)
        scanf("%d", &x[i]);
}

void output(int x[], int n) {
    int i;
    
    for(i = 0; i < n; ++i)
        printf("%d ", x[i]);
    printf("\n");
}

void find_min_max(int x[], int n, int *pmin, int *pmax) {
    int i;
    
    *pmin = *pmax = x[0];

    for(i = 0; i < n; ++i)
        if(x[i] < *pmin)
            *pmin = x[i];
        else if(x[i] > *pmax)
            *pmax = x[i];
}

实验1截图:
image

Q1:找出数组中的最小值和最大值并通过指针参数返回。

Q2:pmin 指向 main 函数中的局部变量 min 的地址;
pmax 指向 main 函数中的局部变量 max 的地址。

实验1.2

实验1.2代码

#include <stdio.h>
#include<stdlib.h>

#define N 5

void input(int x[], int n);
void output(int x[], int n);
int *find_max(int x[], int n);

int main() {
    int a[N];
    int *pmax;

    printf("录入%d个数据:\n", N);
    input(a, N);

    printf("数据是: \n");
    output(a, N);

    printf("数据处理...\n");
    pmax = find_max(a, N);

    printf("输出结果:\n");
    printf("max = %d\n", *pmax);

	system("pause");

    return 0;
}

void input(int x[], int n) {
    int i;

    for(i = 0; i < n; ++i)
        scanf("%d", &x[i]);
}

void output(int x[], int n) {
    int i;
    
    for(i = 0; i < n; ++i)
        printf("%d ", x[i]);
    printf("\n");
}

int *find_max(int x[], int n) {
    int max_index = 0;
    int i;

    for(i = 0; i < n; ++i)
        if(x[i] > x[max_index])
            max_index = i;
    
    return &x[max_index];
}

实验1.2截图
image

Q1:找出最大值的地址;

Q2:可以。

实验2

实验2代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define N 80

int main() {
    char s1[N] = "Learning makes me happy";
    char s2[N] = "Learning makes me sleepy";
    char tmp[N];

    printf("sizeof(s1) vs. strlen(s1): \n");
    printf("sizeof(s1) = %d\n", sizeof(s1));
    printf("strlen(s1) = %d\n", strlen(s1));

    printf("\nbefore swap: \n");
    printf("s1: %s\n", s1);
    printf("s2: %s\n", s2);

    printf("\nswapping...\n");
    strcpy(tmp, s1);
    strcpy(s1, s2);
    strcpy(s2, tmp);

    printf("\nafter swap: \n");
    printf("s1: %s\n", s1);
    printf("s2: %s\n", s2);

	system("pause");

    return 0;
}

实验2截图:
image

Q1:大小是80字节;
sizeof(s1) 计算的是数组s1在内存中占用的总字节数:

Q2:不能替换;因为数组声明错误;

Q3:已交换。

实验2.2

实验2.2代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define N 80

int main() {
    char *s1 = "Learning makes me happy";
    char *s2 = "Learning makes me sleepy";
    char *tmp;

    printf("sizeof(s1) vs. strlen(s1): \n");
    printf("sizeof(s1) = %d\n", sizeof(s1));
    printf("strlen(s1) = %d\n", strlen(s1));

    printf("\nbefore swap: \n");
    printf("s1: %s\n", s1);
    printf("s2: %s\n", s2);

    printf("\nswapping...\n");
    tmp = s1;
    s1 = s2;
    s2 = tmp;

    printf("\nafter swap: \n");
    printf("s1: %s\n", s1);
    printf("s2: %s\n", s2);

	system("pause");

    return 0;
}

实验2.2截图:
image

Q1:指针变量s1中存放的内容是"Learning makes me happy"的起始地址;
sizeof(s1)计算是第一个字符所占的存储大小;strlen(s1)计算字符串长度。

Q2:能替换;

Q3:交换地址,字符串常量在内存中没交换。

实验3

实验3代码:

#include <stdio.h>
#include <stdlib.h>

int main() {
    int x[2][4] = {{1, 9, 8, 4}, {2, 0, 4, 9}};
    int i, j;
    int *ptr1;     // 指针变量,存放int类型数据的地址
    int(*ptr2)[4]; // 指针变量,指向包含4个int元素的一维数组

    printf("输出1: 使用数组名、下标直接访问二维数组元素\n");
    for (i = 0; i < 2; ++i) {
        for (j = 0; j < 4; ++j)
            printf("%d ", x[i][j]);
        printf("\n");
    }

    printf("\n输出2: 使用指针变量ptr1(指向元素)间接访问\n");
    for (ptr1 = &x[0][0], i = 0; ptr1 < &x[0][0] + 8; ++ptr1, ++i) {
        printf("%d ", *ptr1);

        if ((i + 1) % 4 == 0)
            printf("\n");
    }
                     
    printf("\n输出3: 使用指针变量ptr2(指向一维数组)间接访问\n");
    for (ptr2 = x; ptr2 < x + 2; ++ptr2) {
        for (j = 0; j < 4; ++j)
            printf("%d ", *(*ptr2 + j));
        printf("\n");
    }

	system("pause");

    return 0;
}

实验3截图:
image

Q1:是一个指向包含 4 个整数的一维数组的指针;

Q2:是一个包含4个指向整数的指针的数组。

实验4

实验4代码:

#include <stdio.h>
#include <stdlib.h>

#define N 80

void replace(char *str, char old_char, char new_char); // 函数声明

int main() {
    char text[N] = "Programming is difficult or not, it is a question.";

    printf("原始文本: \n");
    printf("%s\n", text);

    replace(text, 'i', '*'); // 函数调用 注意字符形参写法,单引号不能少

    printf("处理后文本: \n");
    printf("%s\n", text);

	system("pause");

    return 0;
}

// 函数定义
void replace(char *str, char old_char, char new_char) {
    int i;

    while(*str) {
        if(*str == old_char)
            *str = new_char;
        str++;
    }
}

实验4截图:
image

Q1:将字符串中的i替换成*;

Q2:可以改成。

实验5

实验5代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define N 80

char *str_trunc(char *str, char x);

int main() {
    char str[N];
    char ch;

    while(printf("输入字符串: "), gets(str) != NULL) {
        printf("输入一个字符: ");
        ch = getchar();

        printf("截断处理...\n");
        str_trunc(str, ch);         // 函数调用

        printf("截断处理后的字符串: %s\n\n", str);
        getchar();
    }

	system("pause");

    return 0;
}

char *str_trunc(char *str, char x){
	int i,len;
	len=strlen(str);
	for(i=0;i<len;i++){

		if(str[i]==x){
			str[i]='\0';
			break;
	}

	return str;
}

实验5截图:
image

实验6

实验6代码:

#include <stdio.h>
#include<stdlib.h>
#include <string.h>

#define N 5

int check_id(char *str); // 函数声明

int main()
{
    char *pid[N] = {"31010120000721656X",
                    "3301061996X0203301",
                    "53010220051126571",
                    "510104199211197977",
                    "53010220051126133Y"};
    int i;

    for (i = 0; i < N; ++i)
        if (check_id(pid[i])) // 函数调用
            printf("%s\tTrue\n", pid[i]);
        else
            printf("%s\tFalse\n", pid[i]);
    
	system("pause");
    
	return 0;
}

int check_id(char *str) {
    int i,len=strlen(str);
    if(len!=18)
        return 0;
    for(i=0;i<len-1;++i)
    {
        if(*(str+i)<'0'||*(str+i)>'9')
            return 0;
    }
	if((str[len-1]>='0' && str[len-1]<='9')||str[len-1]=='X' || str[len-1]=='x')
        return 1;
    else
        return 0;
}

实验6截图:
image

实验7

实验7代码:

#include <stdio.h>
#include <stdlib.h>

#define N 80

void encoder(char *str, int n); // 函数声明
void decoder(char *str, int n); // 函数声明

int main() {
    char words[N];
    int n;

    printf("输入英文文本: ");
    gets(words);

    printf("输入n: ");
    scanf("%d", &n);

    printf("编码后的英文文本: ");
    encoder(words, n);      // 函数调用
    printf("%s\n", words);

    printf("对编码后的英文文本解码: ");
    decoder(words, n); // 函数调用
    printf("%s\n", words);

	system("pause");

    return 0;
}

/*函数定义
功能:对s指向的字符串进行编码处理
编码规则:
对于a~z或A~Z之间的字母字符,用其后第n个字符替换; 其它非字母字符,保持不变
*/
void encoder(char *str, int n) {
    while (*str != '\0') {
        if (*str >= 'a' && *str <= 'z') {
            *str = 'a' + (*str - 'a' + n) % 26;
        } else if (*str >= 'A' && *str <= 'Z') {
            *str = 'A' + (*str - 'A' + n) % 26;
        }
        str++;
    }
}

void decoder(char *str, int n) {
    while (*str != '\0') {
        if (*str >= 'a' && *str <= 'z') {
            *str = 'a' + (*str - 'a' + n) % 26;
        } else if (*str >= 'A' && *str <= 'Z') {
            *str = 'A' + (*str - 'A' + n) % 26;
        }
        str++;
    }
}

实验7截图:
image

实验8

实验8代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char *argv[]) {
    int i, j, cmp;
    char *temp;

    for (i = 1; i < argc - 1; ++i) {
        for (j = 1; j < argc - i; ++j) {
            cmp = strcmp(argv[j], argv[j + 1]);
            if (cmp > 0) {
                temp = argv[j];
                argv[j] = argv[j + 1];
                argv[j + 1] = temp;
            }
        }
    }
    for (i = 1; i < argc; ++i) {
        printf("hello, %s\n", argv[i]);
    }

	system("pause");

    return 0;
}
posted @ 2025-05-18 23:09  王皓惟  阅读(11)  评论(0)    收藏  举报