프로그램 질문 올립니다.
계획자
2023.04.01
이건 버블 소트 하는 프로그램인데요..잘 되지않네요..고수님들 도와주세요.
class Buble{
int bubble[]= {10,3,5,13,8,9,2,6,1,4};
int a;
public static int sort(){
for(int i=0; ibubble.length; i++)
{
for(int j=0; jbubble.length-i-1; j++){
if(bubble[j]bubble[j+1]){
a=bubble[j];
bubble[j]=bubble[j+1];
bubble[j+1]=a;
}
}
}for(int i=0; ibubble.length; i++)
System.out.Print(bubble[i]);
}
}
public class BubbleSort{
public static void main(String args[]){
Buble t=new Buble();
t.sort();
}
}