Strings, chars, and booleans
While the String data type is not a primitive, it is super important as well. It's time to practice them along with char and boolean.
Diese Übung ist Teil des Kurses
Introduction to Java
Anleitung zur Übung
- Declare the
tshirtSizevariable using the correct primitive type. - Assign
trueto theisOnSalevariable. - Declare
Stringvariable calledcolor, setting its value to"green".
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
class NumericalDeclarations {
public static void main(String[] args) {
// Declare the tshirt variable
____ tshirtSize = 'M';
// Assign true to isOnSale
boolean isOnSale = ____;
// Declare and assign color
____ color = ____;
}
}