题目要求输入3个整数,按照从小到大的顺序输出,然后将程序改为:输出3个字符串,按照从小到大顺序输出。用指针处理并分开编写
时间: 2024-03-22 08:41:24 浏览: 63
好的,您的问题是将输入3个整数和3个字符串,按照从小到大顺序输出,都使用指针处理,并且分开编写。下面是代码示例:
对于整数的排序:
```c
#include <stdio.h>
void sort_int(int *a, int *b, int *c) {
if (*a > *b) {
int temp = *a;
*a = *b;
*b = temp;
}
if (*b > *c) {
int temp = *b;
*b = *c;
*c = temp;
}
if (*a > *b) {
int temp = *a;
*a = *b;
*b = temp;
}
}
int main() {
int a, b, c;
printf("请输入3个整数:\n");
scanf("%d%d%d", &a, &b, &c);
sort_int(&a, &b, &c);
printf("排序后的整数:\n");
printf("%d %d %d\n", a, b, c);
return 0;
}
```
对于字符串的排序:
```c
#include <stdio.h>
#include <string.h>
void sort_str(char *str1, char *str2, char *str3) {
if (strcmp(str1, str2) > 0) {
char temp[100];
strcpy(temp, str1);
strcpy(str1, str2);
strcpy(str2, temp);
}
if (strcmp(str2, str3) > 0) {
char temp[100];
strcpy(temp, str2);
strcpy(str2, str3);
strcpy(str3, temp);
}
if (strcmp(str1, str2) > 0) {
char temp[100];
strcpy(temp, str1);
strcpy(str1, str2);
strcpy(str2, temp);
}
}
int main() {
char str1[100], str2[100], str3[100];
printf("请输入3个字符串:\n");
scanf("%s%s%s", str1, str2, str3);
sort_str(str1, str2, str3);
printf("排序后的字符串:\n");
printf("%s %s %s\n", str1, str2, str3);
return 0;
}
```
在这两个程序中,我们分别编写了sort_int和sort_str两个函数来进行整数和字符串的排序。在排序函数中,我们使用了指针来传递变量的地址,从而可以直接修改变量的值。
对于整数的排序,我们使用了三次if语句来进行排序,每次if语句中都进行了两个数的比较和交换。对于字符串的排序,我们使用了三次strcmp函数来进行字符串的比较,每次strcmp函数中都进行了两个字符串的比较和交换。
最后,我们分别输出排序后的整数和字符串即可。
阅读全文