CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Introduction to Java

Afficher le cours

Instructions

  • Declare the tshirtSize variable using the correct primitive type.
  • Assign true to the isOnSale variable.
  • Declare String variable called color, setting its value to "green".

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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 = ____;
    }
}
Modifier et exécuter le code