 |
Java Games: Flashcards, matching, concentration, and word search. |
 |
 |
match Scheme math expressions 1
äúàí æåâåú ùì áéèåééí äùååéí áòøëí
|
| A | B |
| (sqrt (* 2 8) ) | 4 |
| (gcd (* 3 6) 9) | 9 |
| (expt 3 (expt 1 3) ) | 3 |
| (min (max 4 5) (max 6 7) ) | 5 |
| (sub1 (add1 17) ) | 17 |
| (lcm 6 8) | 24 |
| (* 5 ( / 100 20) ) | 25 |
| (+ 3 (sqrt (abs (- 10 26) ) ) ) | 7 |
| (round ( / 57 10) ) | 6 |
| (quotient 19 16) | 1 |
| (remainder 19 17) | 2 |
| (lcm (max 5 9) (min 11 6) ) | 18 |
| (remainder (sub1 20) (add1 10) ) | 8 |
| (quotient (max 100 90) (sub1 10) ) | 11 |
| (expt 3 (expt 2 2) ) | 81 |
| (sqrt (+ 40 104) ) | 12 |
|
| |