package liti;
import java.util.Scanner;
public class dotcpp1023 {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int []arr=new int [10];
for(int i=0;i<10;i++) {
arr[i]=sc.nextInt();
}
for(int i=0;i<9;i++) {
for(int j=0;j<9;j++) {
if(arr[j]>arr[j+1]) {
int temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
for(int i=0;i<10;i++) {
System.out.println(arr[i]);
}
}
}
0.0分
1 人评分
十->二进制转换 (C++代码)(零和负数需要特殊处理)浏览:1135 |
C语言训练-求具有abcd=(ab+cd)2性质的四位数 (C语言代码)浏览:1392 |
C语言程序设计教程(第三版)课后习题8.4 (Java代码)浏览:788 |
Hello, world! (C语言代码)浏览:1315 |
C二级辅导-进制转换 (C语言代码)浏览:657 |
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
这可能是一个假的冒泡法浏览:1071 |
Pascal三角 (C语言代码)浏览:1252 |
打水问题 (C语言代码)浏览:1147 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |