• 洛谷 P4414 [COCI2006-2007#2] ABC


    题目描述
    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,不一定是按这个顺序。这三个数字都小于或等于 100 。第二行包含三个大写字母 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

    【分析】

    又是一道水题。注意不可用scanf和printf,需用cin和cout。

    再就一一对应。没啥好说的。

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 int a,b,c,n[3];
     4 char x[3]; 
     5 int main()
     6 {
     7     cin>>n[0]>>n[1]>>n[2];
     8     sort(n,n+3);
     9     cin>>x[0]>>x[1]>>x[2];
    10     for(int i=0;i<3;i++){
    11         if(x[i]=='A') printf("%d",n[0]);
    12         if(x[i]=='B') printf("%d",n[1]);
    13         if(x[i]=='C') printf("%d",n[2]);
    14         printf(" ");
    15     }   
    16     return 0;
    17  } 
  • 相关阅读:
    HTTP与HTTPS
    各种排序算法的比较
    数据结构之堆排序
    数据结构之希尔排序
    快速排序与归并排序的区别与联系
    数据结构之快速排序
    DVWA-4.3 File Inclusion(文件包含)-High-利用file协议绕过防护策略
    DVWA-4.2 File Inclusion(文件包含)-Medium-双写绕过str_replace替换规则
    DVWA-4.1 File Inclusion(文件包含)-Low
    DVWA-3.4 CSRF(跨站请求伪造)-Impossible
  • 原文地址:https://www.cnblogs.com/TheZealous/p/14295879.html
Copyright © 2020-2023  润新知