Answer:
bool b = isupper(x);
Step-by-step explanation:
I have written the expression for a char variable x.The isupper(x) will return true if the character x is upper case and false if the character x is lower case.
I have stored the returned value to a bool variable b .So the value of variable b will be true only when the x is in uppercase and false when b is lower case.
There were 200 students that attend the dance.
(5,12,13) is a right triangle and can be constructed.
All the others do not satisfy the triangle inequality, i.e. the sum of two short sides must exceed the long side in order for the triangle to be constructed.
Examples:
2+11<15, so no
3+7<11, so no
4+8<15, so no
but 5+12>13 so yes, it can be constructed.
This is my answer. Good luck!