כיתה י - קבוצת יבנהתרגיל מיונים של תלמידי כיתה 14 פבר 2018 המסגרת public static void printMenu(){ System.out.println("Choose 1 to sort by name"); System.out.println("Choose 2 to sort by math"); System.out.println("Choose 3 to sort by english"); System.out.println("Choose 4…
כיתה י - קבוצת יבנהrandomSTR 14 פבר 2018 public static String randomStr(int len){ String str=""; int num; char ch; for (int i=0;i<len;i++){ num = (int)(Math.random()*26); ch = (char) (num + (int)'a'); str += ch; } return str; }
כיתה י - קבוצת יבנהמיון בועות 14 פבר 2018 public static void bubbleSort(int [] arr){ int tmp; for (int i=0;i<arr.length-1;i++){ for (int j=0;j<arr.length-1-i;j++){ if (arr[j] > arr[j+1]){ tmp = arr[j]; arr[j] = arr[j+1];…
כיתה י - קבוצת יבנהמערכים דו ממדיים 12 פבר 2018 public static void printArr(int [][] a){ for (int row=0;row<a.length;row++){ for (int col=0;col<a[0].length;col++){ System.out.print(a[row][col]+"\t"); } System.out.println(); } } public static void main(String[] args) {…
כיתה י - קבוצת יבנהמערכים דו ממדיים 12 פבר 2018 public static void printArr(int [][] a){ for (int row=0;row<a.length;row++){ for (int col=0;col<a[0].length;col++){ System.out.print(a[row][col]+"\t"); } System.out.println(); } } public static void main(String[] args) {…
כיתה י - קבוצת יבנהתרגיל לקראת המבחן 5 פבר 2018 תלמידים יקרים בקישור הזה שאלת תרגול לקראת המבחן ביום רביעי בהצלחה