-
Notifications
You must be signed in to change notification settings - Fork 0
/
array87
57 lines (43 loc) · 1.54 KB
/
array87
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*Array87. Дан массив размераN, все элементы которого, кроме первого, упо-рядочены по возрастанию.
Сделать массив упорядоченным, переместивпервый элемент на новую позицию.*/
package com.company;
import java.sql.SQLOutput;
import java.util.Scanner;
public class Main {
static void order(int a[], int n) {
for (int i = 0; i < n- 1; i++) {
for (int j = 0; j < n - 1 - i; j++) {
if(a[j] > a[j+1]){ //просто отсортируем массив????? bubblesort
int temp = a[j];
a[j] = a[j+1];
a[j+1] = temp;
}
}
}
for (int i = 0; i < n; i++) {
System.out.print(a[i]+" ");
}
}
static void printFunc(int[] a, int n){
for(int i=0;i<n;i++) {
System.out.print(a[i] + " ");
}
}
// генерим рандомные числа
static void fillArray(int[] a, int n){
for(int i=0;i<n;i++) {
a[i] = ((int)(Math.random()*100));
}
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int[] a = new int[100];
System.out.println("enter n:");
int n = scan.nextInt();
System.out.println("Filling Array rand num:");
fillArray(a, n);
printFunc(a, n);
System.out.println(" ");
order(a,n);
}
}