- public class A {
- public static void main(String[] args) {
- String str = "91 27 46 38 50";
- String[] s = str.split(" ");
- int[] c = new int[s.length];
- for(int i = 0; i < s.length; i++){
- c[i] = Integer.parseInt(s[i]);
- }
- for(int i = 0;i < c.length; i++){
- for (int j = 0; j < c.length - i - 1; j++) {
- if (c[j] > c[j + 1]) {
- int t = c[j];
- c[j] = c[j + 1];
- c[j + 1] = t;
- }
- }
- }
- for(int i = 0; i < c.length; i++){
- System.out.print(c[i]+" ");
- }
- System.out.println();
- }
- }
复制代码 |