帮我写一个Java的冒泡,用来处理优惠券
时间: 2024-05-14 10:16:42 浏览: 90
好的,以下是Java的冒泡排序代码,用于处理优惠券:
```
public class BubbleSort{
public static void main(String[] args){
int[] coupons = {3, 7, 1, 9, 2}; // 数组可以替换成你的优惠券
int temp = 0;
for(int i=0; i < coupons.length; i++){
for(int j=1; j < (coupons.length-i); j++){
if(coupons[j-1] > coupons[j]){
temp = coupons[j-1];
coupons[j-1] = coupons[j];
coupons[j] = temp;
}
}
}
System.out.println("优惠券排序为:");
for(int i=0; i < coupons.length; i++){
System.out.print(coupons[i] + " ");
}
}
}
```
这段代码会将你给定的优惠券数组使用冒泡排序算法进行排序,并输出排序结果。希望这个代码片段能够对你有所帮助。
阅读全文