diff options
Diffstat (limited to '3a/6.1Exercies.txt')
| -rw-r--r-- | 3a/6.1Exercies.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3a/6.1Exercies.txt b/3a/6.1Exercies.txt new file mode 100644 index 0000000..2d754cd --- /dev/null +++ b/3a/6.1Exercies.txt @@ -0,0 +1,8 @@ +1. y = 5x + 1; + valid statement +2. x^2 + 2x + 1 = 0; + invalid assignment can only be done on a lone variable to the left of an = +3. x = 5 * a + 4; + valid statement +4. 0 = -15 * b; + invalid variable names cannot be numerical literals
\ No newline at end of file |