- 博客(2)
- 收藏
- 关注
原创 JAVA中的冒泡排序
public class BubbleSort { public static void main(String[] args) { BubbleSort bs = new BubbleSort(); bs.bubbleSort(); } public void bubbleSort() { int[] str= {5,9,6...
2019-08-14 14:31:52 55
原创 JAVA输出空心菱形
Scanner sc = new Scanner(System.in); System.out.print("请输入一个数字:"); int s1 = sc.nextInt(); for(int i=1;i<=s1;i++) { for(int j = 1;j<=s1;j++) { if( j==(...
2019-08-14 09:08:41 165
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人