ªð¦^¦Cªí ¤W¤@¥DÃD µo©«

[¤À¨É] °}¦C¥æ´«

[¤À¨É] °}¦C¥æ´«

²³æ«¬°}¦C¥æ´«code

public class Object {
        static int a[] = { 10, 20, 30, 40 };

        public static void main(String[] argv) {

                for (int i = 0; i < a.length - 1; i++) {
                        for (int j = 0; j < a.length - 1 - i; j++) {
                                ii(j);
                        }
                }
                for (int z : a) {
                        System.out.print(z + " ");
                }
                System.out.println("");
        }

        public static void ii(int j) {
                int temp;
                if (a[j] <= a[j + 1]) {
                        temp = a[j];
                        a[j] = a[j + 1];
                        a[j + 1] = temp;
                }

        }
}

        ÀR«ä¦Û¦b : ¡i¥Í©R¦b©I§l¶¡¡j¦òªû»¡¡G¡u¥Í©R¦b©I§l¶¡¡C¡v¤HµLªkºÞ¦í¦Û¤vªº¥Í©R¡A§óµLªk¾×¦í¦º´Á¡AÅý¦Û¤v¥Ã¦í¤H¶¡¡C¬JµM¥Í©R¥h¨Ó³o»òµL±`¡A§Ú­Ì§óÀ³¸Ó¦n¦n¦a·R±¤¥¦¡B§Q¥Î¥¦¡B¥R¹ê¥¦¡AÅý³oµL±`¡BÄ_¶Qªº¥Í©R¡A´²µo¥¦¯uµ½¬üªº¥ú½÷¡A¬M·Ó¥X¥Í©R¯u¥¿ªº»ù­È¡C
ªð¦^¦Cªí ¤W¤@¥DÃD