编写一个程序,输入3个整数,将它们按从大到小的顺序排序后输出
时间: 2023-03-28 20:03:55 浏览: 100
好的,这个问题我可以回答。以下是程序代码:
#include <stdio.h>
int main()
{
int a, b, c;
printf("请输入3个整数:\n");
scanf("%d%d%d", &a, &b, &c);
if (a > b)
{
int temp = a;
a = b;
b = temp;
}
if (a > c)
{
int temp = a;
a = c;
c = temp;
}
if (b > c)
{
int temp = b;
b = c;
c = temp;
}
printf("从大到小排序后的结果为:%d %d %d\n", c, b, a);
return ;
}
相关问题
用指针方法编写一个程序,输入3个整数,将它们按由小到大的顺序输出
以下是用指针方法编写的程序,输入3个整数,将它们按由小到大的顺序输出:
```c
#include <stdio.h>
void sort(int *a, int *b, int *c);
int main()
{
int a, b, c;
printf("请输入3个整数:\n");
scanf("%d%d%d", &a, &b, &c);
sort(&a, &b, &c);
printf("按由小到大的顺序输出为:%d %d %d\n", a, b, c);
return ;
}
void sort(int *a, int *b, int *c)
{
int temp;
if (*a > *b)
{
temp = *a;
*a = *b;
*b = temp;
}
if (*a > *c)
{
temp = *a;
*a = *c;
*c = temp;
}
if (*b > *c)
{
temp = *b;
*b = *c;
*c = temp;
}
}
```
程序中定义了一个 `sort` 函数,它接收三个整数指针作为参数,用于将这三个整数按由小到大的顺序排序。在 `main` 函数中,先输入三个整数,然后调用 `sort` 函数进行排序,最后按照顺序输出这三个整数。
编写一个程序,输入三个整数,将它们按照由大到小的顺序输出。要求:输入输出语句在主函数中,排序使用自定义函数,必须用到变量的引用。
```cpp
#include <iostream>
using namespace std;
void sort(int& a, int& b, int& c) {
int temp;
if (a < b) {
temp = a;
a = b;
b = temp;
}
if (a < c) {
temp = a;
a = c;
c = temp;
}
if (b < c) {
temp = b;
b = c;
c = temp;
}
}
int main() {
int a, b, c;
cout << "请输入三个整数:";
cin >> a >> b >> c;
sort(a, b, c);
cout << "按照由大到小的顺序输出:";
cout << a << " " << b << " " << c << endl;
return 0;
}
```
阅读全文