Lesson 2 - While
שאלת חימום
public class Main {
public static void main(String[] args) {
int a = 1, b=71, c=3, d= 10, max;
max = (a >b) ? a : b;
max = Math.max(max, c); //same thing
max = (max >d) ? max : d;
System.out.println(max);
}
}71כמה ספרות וכמה אפסים

version 2
Rotate Square

טבלת מעקב

Version 2 : n right or left shifts

note
Find Aprox. log2
Find Parallel lines


Last updated