阳谷网站建设,做外贸是不是要有网站,wordpress dedecms帝国,电子商务公司网站建立前期准备文章目录 一、题目描述[COCI2006-2007#2] ABC题面翻译题目描述输入格式输出格式样例 #1样例输入 #1样例输出 #1 样例 #2样例输入 #2样例输出 #2 二、参考代码 一、题目描述
[COCI2006-2007#2] ABC
题面翻译
【题目描述】
三个整数分别为 A , B , C A,B,C A,B,C。这三个数字… 文章目录 一、题目描述[COCI2006-2007#2] ABC题面翻译题目描述输入格式输出格式样例 #1样例输入 #1样例输出 #1 样例 #2样例输入 #2样例输出 #2 二、参考代码 一、题目描述
[COCI2006-2007#2] ABC
题面翻译
【题目描述】
三个整数分别为 A , B , C A,B,C A,B,C。这三个数字不会按照这样的顺序给你但它们始终满足条件 A B C A B C ABC。为了看起来更加简洁明了我们希望你可以按照给定的顺序重新排列它们。
【输入格式】
第一行包含三个正整数 A , B , C A,B,C A,B,C不一定是按这个顺序。这三个数字都小于或等于 100 100 100。第二行包含三个大写字母 A A A、 B B B 和 C C C它们之间没有空格表示所需的顺序。
【输出格式】
在一行中输出 A A A B B B 和 C C C用一个 空格隔开。
感谢 smartzzh 提供的翻译
题目描述
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.
样例 #1
样例输入 #1
1 5 3
ABC样例输出 #1
1 3 5样例 #2
样例输入 #2
6 4 2
CAB样例输出 #2
6 2 4二、参考代码
#include iostream
#include iomanip
using namespace std;
int main(void)
{int num[3];for (int i 0; i 3; i){cin num[i];}char ch[3];for (int i 0; i 3; i){cin ch[i];}for (int i 0; i 3 - 1; i){for (int j 0; j 3 - 1 - i; j){if (num[j] num[j 1]){int temp num[j];num[j] num[j 1];num[j 1] temp;}}}for (int i 0; i 3; i){if (ch[i] A){cout num[0] ;}else if(ch[i] B){cout num[1] ;}else if (ch[i] C){cout num[2] ;}}
}