Sort the letters  EOlymp - 8316 JAVA

博客围绕字符串字母排序展开,给定由小写拉丁字母组成的字符串,需按字典序升序和降序排序。输入不超100个小写字母,输出分别为按ASCII码非降序和非升序排列的字符串,还提到可将String转为char[]实现排序。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

V - Sort the letters

 EOlymp - 8316 

A string consisting of lowercase Latin letters is given. Sort its letters in ascending and then in descending lexicographical orders.

Input

One line that contains no more than 100 lowercase Latin letters 'a' - 'z'.

Output

In the first line, output the sorted input string in non-decreasing order of its ASCII codes. In the second line, output the sorted input string in non-increasing order of its ASCII codes.

Example 1

Input example #1

qwerty

Output example #1

eqrtwy
ywtrqe

对字符串排序,String可以转为char[]

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();
		char[] cs = s.toCharArray();
		Arrays.sort(cs);
		for (int i = 0; i < cs.length; i++) {
			System.out.print(cs[i]);
		}
		System.out.println();
		for (int i = cs.length-1; i >=0 ; i--) {
			System.out.print(cs[i]);
		}
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值