File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 4
4
* Conditions are like questions.
5
5
* They allow a program to decide to take one action if
6
6
* the answer to a question is "true" or to do another action
7
- * if the answer to the question is "false."<br />
7
+ * if the answer to the question is "false."
8
8
* The questions asked within a program are always logical
9
9
* or relational statements. For example, if the variable 'i' is
10
10
* equal to zero then draw a line.
Original file line number Diff line number Diff line change 4
4
* The character datatype, abbreviated as char, stores letters and
5
5
* symbols in the Unicode format, a coding system developed to support
6
6
* a variety of world languages. Characters are distinguished from other
7
- * symbols by putting them between single quotes ('P').<br />
8
- * <br />
7
+ * symbols by putting them between single quotes ('P').
8
+ *
9
9
* A string is a sequence of characters. A string is noted by surrounding
10
10
* a group of letters with double quotes ("Processing").
11
11
* Chars and strings are most often used with the keyboard methods,
12
- * to display text to the screen, and to load images or files.<br />
13
- * <br />
12
+ * to display text to the screen, and to load images or files.
13
+ *
14
14
* The String datatype must be capitalized because it is a complex datatype.
15
15
* A String is actually a class with its own methods, some of which are
16
16
* featured below.
Original file line number Diff line number Diff line change 8
8
* scatters in all directions.
9
9
*/
10
10
11
-
12
11
void setup () {
13
12
size (640 , 360 , P3D );
14
13
noStroke ();
You can’t perform that action at this time.
0 commit comments