Welcome to George's Lab 2

12345678910
2468101214161820
36912151821242730
481216202428323640
5101520253035404550
6121824303642485460
7142128354249566370
8162432404856647280
9182736455463728190
102030405060708090100
1 + 2 is 3 (integer)
1 . 2 is 12 (string)
1 + 2 is 3 (double)
1 . 2 is 12 (string)

Warning: A non-numeric value encountered in /home/stu/gbrandlin/public_html/cs3680/lab2.php on line 91

Warning: A non-numeric value encountered in /home/stu/gbrandlin/public_html/cs3680/lab2.php on line 91
1.0 word + 2 is 3 (double)
1.0 word . 2 is 1.0 word2 (string)
an int plus a double results in a double because ints can translate into double, but not the other way around.
a string plus an int value results in an numeric is because the numeric value is read first, thus locking in the type.
a string plus a double results in a double for the same reason a string plus an int is of numeric value.