Problem
1. In English, the statement "I will not speak" means the same as "I will speak." In C++, is !!x the same as x?
2. Construct a conditional expression that is equal to the absolute value of a variable. That is, if a variable x is positive, the value of the expression is just x, but if x is negative, the value of the expression is -x, which is positive.