题目描述
You will be given three integers A, B and C. The numbers will not be given in that exact order, but we do know that A is less than B and B less than C. In order to make for a more pleasant viewing, we want to rearrange them in the given order.
输入格式
The first line contains three positive integers A, B and C, not necessarily in that order. All three numbers will be less than or equal to 100. The second line contains three uppercase letters 'A', 'B' and 'C' (with no spaces between them) representing the desired order.
输出格式
Output the A, B and C in the desired order on a single line, separated by single spaces.
题意翻译
【题目描述】
三个整数分别为 �,�,�A,B,C。这三个数字不会按照这样的顺序给你,但它们始终满足条件:�<�<�A<B<C。为了看起来更加简洁明了,我们希望你可以按照给定的顺序重新排列它们。
【输入格式】
第一行包含三个正整数 �,�,�A,B,C,不一定是按这个顺序。这三个数字都小于或等于 100100。第二行包含三个大写字母 �A、�B 和 �C(它们之间没有空格)表示所需的顺序。
【输出格式】
在一行中输出 �A,�B 和 �C,用一个 (空格)隔开。
感谢 @smartzzh 提供的翻译
输入输出样例
输入 #1
1 5 3 ABC
输出 #1
1 3 5
输入 #2
6 4 2 CAB
输出 #2
6 2 4
代码如下:
#include<bits/stdc++.h>
using namespace std;
int main(){
int a[4];
for(int i=0;i<3;i++) cin>>a[i];
sort(a,a+3);
string d;
cin>>d;
for(int i=0;i<3;i++){
if(d[i]=='A') cout<<a[0]<<" ";
else if(d[i]=='B') cout<<a[1]<<" ";
else cout<<a[2]<<" ";
}
return 0;
}
这篇文章介绍了如何使用C++编程语言解决一个问题,即给定三个整数和它们的字母表示的顺序,将它们重新排列到指定的顺序。通过读取输入并利用sort函数对整数进行排序,然后根据字母指示输出调整后的序列。

1601

被折叠的 条评论
为什么被折叠?



