摘要:
// Activity1中的布局 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layou 阅读全文
摘要:
// 冒泡排序 int score []={12,42,34,3,2,8,59,50,48}; for (int i = 0; i < score.length-1; i++) { for (int j = 0; j < score.length-i-1; j++) { if (score[j] < 阅读全文