Menu
×
×
Correct!
Exercise:Add the correct data type for the following variables:
int myNum = 9;
double myDoubleNum = 8.99;
char myLetter = 'A';
bool myBool = false;
string myText = "Hello World";
Not CorrectClick here to try again. Correct!Next ❯myNum = 9; myDoubleNum = 8.99; myLetter = 'A'; myBool = false; myText = "Hello World"; |